{% load i18n %} {% load currency_filters %} {% load ocyanjson %} {% ocyanjson "oscar" "show_tax_everywhere" False as show_tax_separately %}
| {% 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" %} | {% else %}{% trans "Total" %} | {% endif %}{{ order.total_incl_tax|currency:order.currency }} |