{% extends "layout.html" %} {% load currency_filters %} {% load thumbnail %} {% load i18n %} {% block title %} {% trans "Basket" %} | {{ block.super }} {% endblock %} {% block checkout-nav %} {% include 'checkout/nav.html' with step=1 %} {% endblock %} {% block headertext %} {% trans "Basket" %} {% endblock %} {% block content %} {% if basket_warnings %}
{% trans "Basket total (before discounts)" %} | {{ basket.total_incl_tax_excl_discounts|currency }} |
---|---|
{% trans "Special offer:" %} {{ discount.name }} | -{{ discount.discount|currency }} |
{% trans "Vouchers" %} | |
{{ discount.voucher.name }} ({{ discount.voucher.code }}) | -{{ discount.discount|currency }} |
{% trans "Basket total (after discounts)" %} | {{ basket.total_incl_tax|currency }} |
{% trans "Basket total" %} | {{ basket.total_incl_tax|currency }} |
{% trans "Shipping" %} ({{ shipping_method.name }}) | {{ shipping_charge_incl_tax|currency }} |
{% trans "Order total" %} |
{{ order_total_incl_tax|currency }} |
{% trans "Your basket is empty." %}
{% trans "Continue shopping" %}
{% endblock %} {% endif %} {% if request.user.is_authenticated %}{% trans "Your saved basket is empty." %}
{% else %} {% endif %}