{% load tax_tags i18n %}
{% if discount_total or shipping_total %}
{{ item_total|currency }}
{% endif %} {% if discount_total %}
{{ discount_total|currency }}
{% endif %} {% if shipping_total %}
{{ shipping_total|currency }}
{% endif %} {% if tax_total %}
{{ tax_total|currency }}
{{ order_total|currency }}
{% else %}
{{ order.tax_total|currency }}
{{ order.total|currency }}
{% endif %}