我想在我的模板中顯示小計的總和。Django循環模板中行的總和
{% for quote in quotes %}
{% for product in quote.purchase_quote_products_set.all %}
{{product.subtotal}} |
{% endfor %}
<span id="total"></span>
{% endfor %}
我的結果。
15 | 120 | 2000 |
有什麼辦法,以顯示內部span#total
<span id="total">{{ sum_of_subtotal }}</span>
在變量聲明的模板中使用'set'。爲總數做過濾器。 'HTTP:// stackoverflow.com /問題/ 5275639 /總和功能於HTML中使用模板,模板,tag' –