{% extends "checkout/partials/totals_block.html" %} {% load i18n currency_filters delivery_time %} {% block panel_body %} {% with basket=order %}
{% delivery_time basket as deliverytime %} {% if deliverytime %}
{{ deliverytime|safe }}
{% endif %}
{% endwith %} {% endblock %} {% block discount_totals %} {% if order.basket_discounts %} {% for discount in order.basket_discounts %} {{ discount.offer_name }} - {{ discount.amount|currency:order.currency }} {% endfor %} {% endif %} {% endblock %} {% block basket_total %} {% endblock %} {% block shipping_totals %} {{ order.shipping_method }} {% if not show_tax_separately %} {{ order.shipping_incl_tax|currency:order.currency }} {% else %} {{ order.shipping_excl_tax|currency:order.currency }} {% endif %} {% if surcharges %} {% for charge in surcharges %} {{charge.name}} {% if not show_tax_separately %} {{ charge.incl_tax|currency:order.currency }} {% else %} {{ charge.excl_tax|currency:order.currency }} {% endif %} {% endfor %} {% endif %} {% endblock %} {% block tax_totals %} {% if show_tax_separately %}
{% trans "Tax" %}
{% trans "Basket" %} {{ order.total_tax|currency:order.currency }} {% trans "Shipping" %} {{ order.shipping_tax|currency:order.currency }} {% endif %} {% endblock %} {% block basketline %} {% with warning=False %} {{ block.super }} {% endwith %} {% endblock %} {% block order_total %} {% trans 'Total incl. tax' %} {{ order.total_incl_tax|currency:order.currency }} {% trans 'Total excl. tax' %} {{ order.total_excl_tax|currency:order.currency }} {% endblock %}