{% load i18n %}
| {% trans "Product" %} | {% trans "Quantity" %} | {% trans "Unit Price" %} | {% trans "Total" %} |
|---|---|---|---|
| {{ item.summary.media|safe }} | {{ item.quantity }} | {{ item.unit_price }} | {{ item.line_total }} |
|
{{ item.summary.body|safe }}
{% for key, extra_row in item.extra.rows %}
{{ extra_row.label }}: {{ extra_row.amount }}
{% endfor %}
|
|||
{% trans "Subtotal" %} |
{{ data.subtotal }} |
||
| {{ extra_row.label }} | {{ extra_row.amount }} | ||
{% trans "Total" %} |
{{ data.total }} |
||