{% extends "checkout/layout.html" %} {% load currency_filters %} {% load i18n %} {% block title %} {% trans "Confirmation of order" %} {{ order.number }} | {{ block.super }} {% endblock title %} {% block checkout-nav %}{% endblock %} {% block content %}

{% blocktrans with order_num=order.number %} Confirmation for order #{{ order_num }} {% endblocktrans %}

{% 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." %}

{% block shipping_info %}

{% trans "Shipping" %}

{% trans "Your order will be delivered to:" %}

{% for line in order.shipping_address.active_address_fields %} {{ line }}
{% endfor %}
{% endblock %}
{% block payment_info %}

{% trans "Payment" %}

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

{% trans "Order details" %}

{% trans "Items purchased" %}

{% trans "Estimated dispatch date" %}

{% trans "Quantity" %}

{% trans "Cost" %}

{% for line in order.lines.all %}
{{ line.est_dispatch_date }}
{{ line.quantity }}
{{ line.line_price_before_discounts_incl_tax|currency }}
{% endfor %} {% for discount in order.discounts.all %}

{{ discount.offer }}

- {{ discount.amount|currency }}
{% endfor %}

{% trans "Basket total" %}

{{ order.basket_total_incl_tax|currency }}

{% blocktrans with method=order.shipping_method %}Shipping charge - {{ method }}{% endblocktrans %}

{{ order.shipping_incl_tax|currency }}

{% trans "Order total" %}

{{ order.total_incl_tax|currency }}

{% if not order.user %}

{% trans "Tracking your order" %}

You can track the status of your order.

{% endif %}
{% trans "Print this page" %} {% trans "Continue shopping" %}
{% endblock content %} {% block extratracking %} _gaq.push(['_addTrans', '{{ order.number|escapejs }}', '{{ shop_name|escapejs }}', '{{ order.total_incl_tax|escapejs }}', '{{ order.total_tax|escapejs }}', '{{ order.shipping_incl_tax|escapejs }}', '{{ order.shipping_address.line4|escapejs }}', '{{ order.shipping_address.state|escapejs }}', '{{ order.shipping_address.country.name|escapejs }}' ]); {% for line in order.lines.all %} _gaq.push(['_addItem', '{{ order.number }}', '{{ line.partner_sku|escapejs }}', '{{ line.title|escapejs }}', '{{ line.category|escapejs }}', '{{ line.unit_price_incl_tax }}', '{{ line.quantity }}']); {% endfor %} _gaq.push(['_trackTrans']); {% endblock %}