{% extends "layout.html" %} {% load currency_filters %} {% block header %}

Checkout / Thank you

{% endblock header %} {% block content %}

Order confirmation

Your order has been placed - your order number is {{order.number}}

Please make a note of this reference or print this page and quote it in any communication with us regarding your order.

Shipping

Your order will be delivered to:

{% for line in order.shipping_address.active_address_fields %} {{ line }}
{% endfor %}

Payment

{% for source in order.sources.all %} {{ source }} {% endfor %}

Order details

{% for line in order.lines.all %} {% endfor %} {% for discount in order.discounts.all %} {% endfor %}
Product Estimated dispatch date Quantity Line price excl tax Line price incl tax
{{ line.description }} {{ line.est_dispatch_date }} {{ line.quantity }} {{ line.line_price_before_discounts_excl_tax|currency }} {{ line.line_price_before_discounts_incl_tax|currency }}
{{ discount.offer }} - {{ discount.amount|currency }}
Basket total {{ order.basket_total_excl_tax|currency }} {{ order.basket_total_incl_tax|currency }}
Shipping charge - {{order.shipping_method}} {{ order.shipping_excl_tax|currency }} {{ order.shipping_incl_tax|currency }}
Order total {{ order.total_incl_tax|currency }}
{% endblock content %}