django模板加减乘除

{% widthratio value1 value2 value3 %}

表示: value1/value2*value3

乘法:


   {% for price in item.price_id.all %}
         {% widthratio price.price 1 item.repair_num %}{{price.unit}}
   {% endfor %}

除法:


   {% for price in item.price_id.all %}
         {% widthratio price.price 10 item.repair_num %}{{price.unit}}
   {% endfor %}

{{ value1|add:value2 }}

加法

{{ value1|add:value2 }}

减法

{{ value1|add:-value2 }}

你可能感兴趣的:(django)