{% extends "layout.html" %} {% load currency_filters %} {% load i18n %} {% block title %} {% trans 'Order' %} {{ order.number }} | {{ block.super }} {% endblock %} {% block body_class %}account-pages{% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {% trans 'Account' %} {% endblock %} {% block subnavigation %} {% include "partials/nav_profile.html" with order_history="active" %} {% endblock %} {% block subheader %}

{% blocktrans with number=order.number %}Order #{{ number }}{% endblocktrans %}

{% endblock subheader %} {% block content %}
{% for line in order.lines.all %} {% endfor %} {% for discount in order.discounts.all %} {% endfor %}
{% trans 'Product' %} {% trans 'Dispatch date' %} {% trans 'Quantity' %} {% trans 'Line price excl tax' %} {% trans 'Line price incl tax' %}
{{ line.description }} {{ line.est_dispatch_date|default:"-" }} {{ line.quantity }} {{ line.line_price_before_discounts_excl_tax|currency }} {{ line.line_price_before_discounts_incl_tax|currency }}
{% csrf_token %} {% trans 'Write a review' %}
{{ discount.description }} -{{ discount.amount|currency }}
{% trans 'Basket total (inc. tax)' %} {{ order.basket_total_incl_tax|currency }}
{% trans 'Shipping charge (inc. tax)' %} {{ order.shipping_incl_tax|currency }}
{% trans 'Order total' %} {{ order.total_incl_tax|currency }}

{{ order.shipping_method }}

{% trans 'Address:' %}

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

{% trans 'Contact Number:' %}

{{ shipping_address.phone_number }}

{% trans 'Shipping Notes:' %}

{{ shipping_address.notes }}

{% endblock content %}