{% 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 %}{% 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 }} | |
{{ 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 }}
{% for field in order.shipping_address.active_address_fields %}
{{ field }}
{% endfor %}
{{ shipping_address.phone_number }}
{{ shipping_address.notes }}