{% load i18n %} {% load currency_filters %} {% load ocyanjson %} {% ocyanjson "oscar" "show_tax_everywhere" False as show_tax_separately %}
{% 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 %} {% with surcharges=order.surcharges.all %} {% if surcharges %} {% for charge in surcharges %} {% endfor %} {% endif %} {% endwith %} {% endblock shipping_total %} {% 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 %} {% if show_tax_separately %} {% endif %} {% if order.total_tax %} {% else %} {% endif %} {% endblock order_total %}
{% 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 'Surcharges' %}
{{charge.name}} {% if not show_tax_separately and order.shipping_charge.is_tax_known %} {{ charge.excl_tax|currency:order.currency }} {% else %} {{ charge.incl_tax|currency:order.currency }} {% endif %}
 
{% trans "Post order actions" %}

{{ action.message }}

 
{% trans "Total excl. tax" %} {{ order.total_excl_tax|currency:order.currency }}
{% trans "Total tax" %} {{ order.total_tax|currency:order.currency }}
{% trans "Total incl. tax" %}{% trans "Total" %}{{ order.total_incl_tax|currency:order.currency }}