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

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

{% if order.shipping_address %}
{% trans "Address" %}
{% for field in order.shipping_address.active_address_fields %} {{ field }}
{% endfor %}
{% if order.shipping_address.phone_number %}
{% trans "Contact number" %}
{{ order.shipping_address.phone_number }}
{% endif %} {% if order.shipping_address.notes %}
{% trans "Shipping notes" %}
{{ order.shipping_address.notes }}
{% endif %}
{% trans "Shipping method" %}
{{ order.shipping_method }}
{% else %} {% trans "No shipping is required for this order." %} {% endif %}
{% endblock %}
{% block payment_info %}

{% trans "Payment" %}

{% for source in order.sources.all %} {{ source }} {% empty %} {% trans "No payment was required for this order." %} {% endfor %}
{% endblock %}

{% trans "Order details" %}

{% trans "Items purchased" %}

{% trans "Estimated dispatch date" %}

{% trans "Quantity" %}

{% trans "Cost" %}

{% for line in order.lines.all %}
{% with image=line.product.primary_image %} {% thumbnail image.original "200x200" upscale=False as thumb %} {{ product.get_title }} {% endthumbnail %} {% endwith %}

{{ line.description }}

{{ line.est_dispatch_date|default:"-" }}
{{ line.quantity }}

{{ line.line_price_before_discounts_incl_tax|currency }}

{% endfor %}
 
{% with discounts=order.basket_discounts %} {% if discounts %} {% for discount in discounts %} {% endfor %} {% else %} {% endif %} {% endwith %} {% if order.has_shipping_discounts %} {% for discount in order.shipping_discounts %} {% endfor %} {% else %} {% endif %} {% with actions=order.post_order_actions %} {% if actions %} {% for action in order.post_order_actions %} {% endfor %} {% endif %} {% endwith %}

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

{% if not order.user %}

{% trans "Tracking your order" %}

{% trans "You can" %} {% trans "track the status of your order" %}.

{% endif %}
{% trans "Print this page" %} {% trans "Continue shopping" %}
{% endblock content %} {% block extratracking %} {% if google_analytics_id %} {% include 'partials/google_analytics_transaction.html' %} {% endif %} {% endblock %}