{% extends "checkout/layout.html" %} {% load currency_filters %} {% block title %} Confirmation of order {{ order.number }} | {{ block.super }} {% endblock title %} {% block checkout-nav %}{% endblock %} {% block content %}
Your order has been placed and a confirmation email has ben sent - 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.
Your order will be delivered to:
{% for line in order.shipping_address.active_address_fields %} {{ line }}You can track the status of your order.
{% endif %} {% 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 %}