{% 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 }} |