{% extends "base.html" %} {% load currency_filters %} {% load thumbnail %} {% load i18n %} {% load staticfiles %} {% block title %} {% trans "Confirmation of order" %} {{ order.number }} {% endblock title %} {% block content %} {% block checkout_progress %}
{% endblock %}

{% block page_title %}{% trans "Order Confirmation" %}{% endblock %}

{% trans "Thank you for your order" %}

Order Number: {{ order.number }}

You will receive an email confirmation shortly.

{% trans "Print this page" %}

{% block shipping_address %}

{% trans "Shipping" %}

{% trans "Address" %}

{% for field in order.shipping_address.active_address_fields %} {{ field }}
{% endfor %}
{% if order.shipping_address.phone_number %}

{% trans "Contact" %}

{% trans "Phone" %}: {{ order.shipping_address.phone_number }} {% if order.guest_email %}
{% trans "Email" %}: {{ order.guest_email }} {% endif %}

{% endif %}

{% trans "Instructions" %}

{% if order.shipping_address.notes %}

{{ order.shipping_address.notes|escape }}

{% else %}

None

{% endif %}
{% endblock %} {% block payment_info %} {% endblock %} {% block order_details %}

{% trans "Order details" %}

{% for cart_item in order.cart.cartitem_set.all %}

{{ cart_item.description }}

{% if cart_item.has_details %}
    {% for detail in cart_item.details.all %}
  • {{ detail.name }}: {{ detail.value }}
  • {% endfor %}
  • Qty: {{ cart_item.quantity }} @ {{ cart_item.unit_price|currency }}
{% endif %}

{{ cart_item.line_total|currency }}
{% endfor %} {% endblock order_details %} {% block order_tracking %} {% endblock order_tracking %}
{% endblock content %}