{% load i18n %} {% load currency_filters %} {% load shipping_tags %}
{% with offer_discounts=basket.offer_discounts voucher_discounts=basket.grouped_voucher_discounts %} {% block discount_totals %} {% if offer_discounts or voucher_discounts %} {% if offer_discounts or voucher_discounts %} {% else %} {% endif %} {% for discount in offer_discounts %} {% endfor %} {% if voucher_discounts %} {% for discount in voucher_discounts %} {% endfor %} {% endif %} {% endif %} {% endblock %} {% block basket_total %} {% endblock %} {% endwith %} {% block shipping_totals %} {% if shipping_methods|length > 1 and editable %} {% endif %} {% if not shipping_method.is_discounted %} {% else %} {% shipping_charge_discount shipping_method basket as shipping_discount %} {% shipping_charge_excl_discount shipping_method basket as shipping_charge_excl_discount %} {% endif %} {% endblock %} {% block surcharges %} {% if surcharges %} {% for charge in surcharges %} {% endfor %} {% endif %} {% endblock %} {% block tax_totals %} {% if show_tax_separately %} {% endif %} {% endblock %} {% block post_order_action_totals %} {% if basket.post_order_actions %} {% for discount in basket.post_order_actions %} {% endfor %} {% endif %} {% endblock %} {% block order_total %} {% if not order_total.is_tax_known %} {% endif %} {% endblock %}
{% trans "Basket total (before discounts)" %}{% trans "Basket total" %} {% if basket.is_tax_known and not show_tax_separately %} {{ basket.total_incl_tax_excl_discounts|currency:basket.currency }} {% else %} {{ basket.total_excl_tax_excl_discounts|currency:basket.currency }} {% endif %}
{% trans "Discount" %} {{ discount.name }} {% if discount.description %}
{{ discount.description }} {% endif %}
- {{ discount.discount|currency:basket.currency }}
{% if editable %}
{% csrf_token %}
{% endif %} {% if discount.voucher.voucher_set %} {{ discount.voucher.voucher_set.name }} ({{ discount.voucher.code }}) {% else %} {{ discount.voucher.name }} ({{ discount.voucher.code }}) {% endif %}
- {{ discount.discount|currency:basket.currency }}
{% trans "Alternative shipping methods can be chosen during checkout" %}
{{ shipping_method.name }} {{ shipping_charge.incl_tax|currency:basket.currency }}
{{ shipping_method.name }} {% if not show_tax_separately and shipping_charge_excl_discount.is_tax_known %} {{ shipping_charge_excl_discount.incl_tax|currency:basket.currency }} {% else %} {{ shipping_charge_excl_discount.excl_tax|currency:basket.currency }} {% endif %}
{% trans "Discount" %} {{ shipping_method.discount_name }} - {{ shipping_discount|currency:basket.currency }}
{{ charge.surcharge.name }} {% if not show_tax_separately and shipping_charge.is_tax_known %} {{ charge.price.incl_tax|currency:basket.currency }} {% else %} {{ charge.price.excl_tax|currency:basket.currency }} {% endif %}

{% trans "Tax" %}

{% trans "Basket" %} {{ basket.total_tax|currency:basket.currency }}
{% trans "Shipping" %} {{ shipping_charge.tax|currency:basket.currency }}

{% trans "Post order actions" %}

{% trans "These will be applied once your order is placed." %}
{{ discount.name }}

{{ discount.description }}

{% trans 'Subtotal' %} {{ order_total.incl_tax|currency:basket.currency }}
{% trans "Taxes will be added during checkout." %}
{% block order_summation_table %} {% block order_summation %} {% if order_total.is_tax_known %} {% endif %} {% if not order_total.is_tax_known %} {% endif %} {% endblock %}
{% trans 'Tax' %} {{ order_total.tax|currency:basket.currency }}
{% trans 'Total excl. tax' %} {{ order_total.excl_tax|currency:basket.currency }}
{% trans 'Amount to pay' %} {{ order_total.incl_tax|currency:basket.currency }}
{% trans "Taxes will be added during checkout." %}
{% endblock %}