{# include this template to list all items of the given order #} {% load i18n post_office %}{% spaceless %}
{% trans "Quantity" %} | {% trans "Product" %} | {% trans "Price" %} | |
---|---|---|---|
{{ item.quantity }} × |
|
{{ item.summary.product_name }} {{ item.summary.caption|safe }} | {{ item.line_total }} |
{% for _, extra_row in item.extra.rows %} {{ extra_row.label }} {% endfor %} | {% for _, extra_row in item.extra.rows %} {{ extra_row.amount }} {% endfor %} | ||
{% trans "Subtotal" %}: | {{ order.subtotal }} | ||
{{ extra_row.label }}: | {{ extra_row.amount }} | ||
{% trans "Total" %}: | {{ order.total }} |