{% load i18n %} {% load currency_filters %}
{% trans "Basket" %} |
|
---|---|
{% trans "Basket total (before discounts)" %} | {{ order.price.incl|currency:order.currency }} |
{% trans "Discount" %} {{ discount.offer }} | - {{ discount.amount|currency:order.currency }} |
{% trans "Basket total (after discounts)" %} | {{ order.price_with_discount_without_deposit.incl|currency:order.currency }} |
{% trans "Basket total" %} | {% if show_tax_separately %} {{ order.price_with_discount_without_deposit.excl|currency:order.currency }} {% else %} {{ order.price_with_discount_without_deposit.incl|currency:order.currency }} {% endif %} |
Pfand gesamt | {{ order.deposit.incl|currency:order.currency }} |
{% trans "Shipping" %}{% if shipping_methods|length > 1 and editable %} {% trans "Alternative shipping methods can be chosen during checkout" %} {% endif %} |
|
{{ order.shipping_method }} | {% 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 show_tax_separately %} {{ charge.excl_tax|currency:order.currency }} {% else %} {{ charge.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 }} |