{% load i18n %} {% load currency_filters %}
{% with discounts=order.basket_discounts %} {% block discount_totals %} {% if discounts %} {% for discount in discounts %} {% endfor %} {% endif %} {% endblock discount_totals %} {% block basket_total %} {% if discounts %} {% else %} {% endif %} {% endblock basket_total %} {% endwith %} {% block shipping_total %} {% if order.has_shipping_discounts %} {% for discount in order.shipping_discounts %} {% endfor %} {% else %} {% endif %} {% endblock shipping_total %} {% if show_tax_separately %} {% endif %} {% block post_order_action_totals %} {% with actions=order.post_order_actions %} {% if actions %} {% for action in order.post_order_actions %} {% endfor %} {% endif %} {% endwith %} {% endblock post_order_action_totals %} {% block order_total %} {% endblock order_total %}

{% trans "Basket" %}

{% trans "Basket total (before discounts)" %} {{ order.basket_total_before_discounts_incl_tax|currency:order.currency }}
{% trans "Discount" %} {{ discount.offer }} - {{ discount.amount|currency:order.currency }}
{% trans "Basket total (after discounts)" %} {{ order.basket_total_incl_tax|currency:order.currency }}
{% trans "Basket total" %} {% if show_tax_separately %} {{ order.basket_total_excl_tax|currency:order.currency }} {% else %} {{ order.basket_total_incl_tax|currency:order.currency }} {% endif %}
 

{% trans "Shipping" %}

{% trans "Shipping method" %} {{ order.shipping_method }}
{% trans "Shipping charge (before discounts)" %} {{ order.shipping_before_discounts_incl_tax|currency:order.currency }}
{% trans "Discount" %} {{ discount.offer }} - {{ discount.amount|currency:order.currency }}
{% trans "Shipping charge (after discounts)" %} {{ order.shipping_incl_tax|currency:order.currency }}
{% trans "Shipping charge" %} {% if show_tax_separately %} {{ order.shipping_excl_tax|currency:order.currency }} {% else %} {{ order.shipping_incl_tax|currency:order.currency }} {% endif %}
 
{% trans "Order tax" %} {{ order.total_tax|currency:order.currency }}
 

{% trans "Post order actions" %}

{{ action.message }}

 

{% trans "Order total" %}

{{ order.total_incl_tax|currency:order.currency }}