Produtos
PRODUTO (QTD)
TOTAL
{% for name, value in Sum_of_product.product_report.items %}
{% if value.product_item != 0 %}
{{ name }}
{{ value.product_cont }}x
R$ {{ value.product_item|floatformat:2 }}
{% endif %}
{% empty %}
Vazio.
{% endfor %}
Total da Venda
R$ {{ Sum_of_product.sum_of_product|floatformat:2 }}