{% extends "checkout/layout.html" %} {% load currency_filters %} {% load thumbnail %} {% load i18n %} {% block title %} {% trans "Confirmation of order" %} {{ order.number }} | {{ block.super }} {% endblock title %} {% block checkout-nav %}{% endblock %} {% block content %}
{% trans "Your order has been placed and a confirmation email has ben sent - your order number is" %} {{ order.number }}
{% trans "Please make a note of this reference or print this page and quote it in any communication with us regarding your order." %}
{{ line.line_price_before_discounts_incl_tax|currency }}
{% trans "Basket" %} |
|
---|---|
{% trans "Basket total (before discounts)" %} | {{ order.basket_total_before_discounts_incl_tax|currency }} |
{% trans "Discount" %} {{ discount.offer }} | - {{ discount.amount|currency }} |
{% trans "Basket total (after discounts)" %} | {{ order.basket_total_incl_tax|currency }} |
{% trans "Basket total" %} | {{ order.basket_total_incl_tax|currency }} |
{% trans "Shipping" %} |
|
{% trans "Shipping method" %} | {{ order.shipping_method }} |
{% trans "Shipping charge (before discounts)" %} | {{ order.shipping_before_discounts_incl_tax|currency }} |
{% trans "Discount" %} {{ discount.offer }} | - {{ discount.amount|currency }} |
{% trans "Shipping charge (after discounts)" %} | {{ order.shipping_incl_tax|currency }} |
{% trans "Shipping charge" %} | {{ order.shipping_incl_tax|currency }} |
{% trans "Post order actions" %} |
|
{{ action.message }} |
|
{% trans "Order total" %} |
{{ order.total_incl_tax|currency }} |
{% trans "You can" %} {% trans "track the status of your order" %}.
{% endif %} {% endblock content %} {% block extratracking %} {% if google_analytics_id %} {% include 'partials/google_analytics_transaction.html' %} {% endif %} {% endblock %}