{% load i18n %} {% for row in original.rows.all %} {% if forloop.first %} {% endif %} {% if forloop.last %}
{% trans "ORD" %} {% trans "Project" %} {% trans "Product" %} {% trans "Description" %} {% trans "Unit" %} {% trans "Quantity" %} {% trans "Price" %} {% trans "Discount" %} {% trans "Fee" %} {% trans "Row Total" %} {% trans "E" %} {% trans "D" %}
{{ row.ordering }} {{ row.project|default_if_none:"" }} {{ row.product }} {{ row.get_description }} {{ row.m_unit }} {{ row.quantity }} {{ row.price }} {{ row.discount }} {{ row.fee }} {{ row.get_total }}
{% trans "Total Income" %} {{ row.quotation.totals.income }}
{% trans "Total Discount" %} {{ row.quotation.totals.discount }}
{% trans "Total Fee" %} {{ row.quotation.totals.fee }}
{% trans "Total No Vat" %} {{ row.quotation.totals.total_no_vat }}
{% trans "Total Vat" %} {{ row.quotation.totals.vat }}
{% trans "Quotation Total" %} {{ row.quotation.totals.total}}
{% endif %} {% endfor %}