{% trans "Subtotal" context "E-mail order lines summary table" %}
|
{% price order.get_subtotal display_gross=order.display_gross_prices html=False %}
|
{% trans "Shipping" context "E-mail order lines summary table" %}
|
{% price order.shipping_price display_gross=order.display_gross_prices html=False %}
|
{% if order.display_gross_prices %}
{% trans "Taxes (included)" context "E-mail order lines summary table" %}
{% else %}
{% trans "Taxes" context "E-mail order lines summary table" %}
{% endif %}
|
{% price order.total.tax html=False %}
|
{% if order.discount_amount %}
{% trans "Discount" context "E-mail order lines summary table" %}
|
{% discount_as_negative order.discount html=True %}
|
{% endif %}
{% trans "Total" context "E-mail order lines summary table" %}
|
{% price order.total display_gross=order.display_gross_prices html=False %}
|