我需要将模型的值与模板中的聚合结果进行比较。像一个 :
{% for valor in valores %}
{{ valor.quantidade }}
{% endfor %}
results of my loop
{{ total.total_quantidade }}
this is the result of my Aggregate
我怎样才能比较这个值?
我的结果列表{% for valor ... %}
1000
2000
3000
我的汇总结果
1500
{% if total.quantidade_total >= valor.quantidade %}
显示等效值..依此类推,如果较小则显示另一个值
我该如何进行?