{% extends "checkout/layout.html" %} {% load url from future %} {% load currency_filters %} {% load thumbnail %} {% load i18n %} {% load staticfiles %} {% block title %} {% trans "Confirmation of order" %} {{ order.number }} | {{ block.super }} {% endblock title %} {% block checkout_nav %} {% endblock %} {% block checkout_title %}{% trans "Order confirmation" %}{% endblock %} {% block content %}

{% 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 "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 %} {% if order.shipping_address.notes %}

{% trans "Note" %}

{{ order.shipping_address.notes|linebreaks }}

{% endif %}

{% trans "Shipping method" %}

{{ order.shipping_method }}

{% endblock %}
{% block payment_info %}

{% trans "Payment" %}

{% trans "Payment" %}

{% for source in order.sources.all %} {% if source.reference %} {% blocktrans with amount=source.amount_allocated|currency:source.currency type=source.source_type.name reference=source.reference %} Allocation of {{ amount }} from type {{ type }} (reference: {{ reference }}) {% endblocktrans %} {% else %} {% blocktrans with amount=source.amount_allocated|currency:source.currency type=source.source_type.name %} Allocation of {{ amount }} from type {{ type }} {% endblocktrans %} {% endif %} {% empty %} {% trans "No payment was required for this order." %} {% endfor %}
{% endblock %}

{% trans "Order details" %}

{% trans "Items purchased" %}

{% trans "Estimated dispatch date" %}

{% trans "Quantity" %}

{% trans "Total" %}

{% 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.est_dispatch_date|default:"-" }}
{{ line.quantity }}

{% if show_tax_separately %} {{ line.line_price_before_discounts_excl_tax|currency:order.currency }} {% else %} {{ line.line_price_before_discounts_incl_tax|currency:order.currency }} {% endif %}

{% 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 %} {% if show_tax_separately %} {% 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:order.currency }}
{% trans "Discount" %} {{ discount.offer }} - {{ discount.amount|currency:order.currency }}
{% trans "Basket total (after discounts)" %} {{ order.basket_total_incl_tax|currency:order.currency }}
{% trans "Basket total" %} {% if show_tax_separately %} {{ order.basket_total_excl_tax|currency:order.currency }} {% else %} {{ order.basket_total_incl_tax|currency:order.currency }} {% endif %}

{% trans "Shipping" %}

{% trans "Shipping method" %} {{ order.shipping_method }}
{% trans "Shipping charge (before discounts)" %} {{ order.shipping_before_discounts_incl_tax|currency:order.currency }}
{% trans "Discount" %} {{ discount.offer }} - {{ discount.amount|currency:order.currency }}
{% trans "Shipping charge (after discounts)" %} {{ order.shipping_incl_tax|currency:order.currency }}
{% trans "Shipping charge" %} {% if show_tax_separately %} {{ order.shipping_excl_tax|currency:order.currency }} {% else %} {{ order.shipping_incl_tax|currency:order.currency }} {% endif %}
 
{% trans "Order tax" %} {{ order.total_tax|currency:order.currency }}
 

{% trans "Post order actions" %}

{{ action.message }}

 

{% trans "Order total" %}

{{ order.total_incl_tax|currency:order.currency }}

{% if not order.user %}

{% trans "Tracking your order" %}

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

{% endif %}
{% endblock content %} {% block tracking %} {% include "partials/google_analytics_transaction.html" %} {% endblock %}