{% extends "checkout/layout.html" %} {% load currency_filters %} {% load thumbnail %} {% load i18n %} {% load staticfiles %} {% block title %} {% blocktrans with number=order.number %} Order {{ number }}: confirmation {% endblocktrans %} | {{ block.super }} {% endblock title %} {% block checkout_nav %} {% include 'checkout/nav.html' with step=5 %} {% endblock %} {% block checkout_title %} {% blocktrans with number=order.number %} Order {{ number }}: confirmation {% endblocktrans %} {% endblock %} {% block content %}
{% blocktrans with number=order.number %} Your order has been placed and a confirmation email has been sent - your order number is {{ number }}. {% endblocktrans %} {% trans "Please make a note of this reference or print this page and quote it in any communication with us regarding your order." %}
{% trans "Phone" %}: {{ order.shipping_address.phone_number }}
{% if order.guest_email %}
{% trans "Email" %}: {{ order.guest_email }}
{% endif %}
{{ order.shipping_address.notes|linebreaks }}
{% endif %} {% else %}{% trans "No shipping address required." %}
{% endif %}{{ order.shipping_method }}
{% 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 %} {% if order.billing_address %}{% trans "Items purchased" %}
{% trans "Quantity" %}
{% trans "Total" %}
{% if line.upc %}{{ line.upc }}
{% endif %}
{% if line.est_dispatch_date %}
{% blocktrans with date=line.est_dispatch_date %}
Estimated dispatch: {{ date }}
{% endblocktrans %}
{% endif %}
{% 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 %}
{% 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 }} |
{% trans "You can track the status of your order" %}
{% trans "View order status" %}. {% endif %} {% endblock %} {% block order_actions %} {% endblock order_actions %} {% endblock content %} {% block tracking %} {% if send_analytics_event %} {% include "partials/google_analytics_transaction.html" %} {% endif %} {% endblock %}