I want to show sum of subtotal in my template.
{% for quote in quotes %}
{% for product in quote.purchase_quote_products_set.all %}
{{product.subtotal}} |
{% endfor %}
<span id="total"></span>
{% endfor %}
my result.
15 | 120 | 2000 |
Is there any way to show sum of subtotal inside span#total
<span id="total">{{ sum_of_subtotal }}</span>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…