{% extends "layout.html" %} {% load currency_filters %} {% block title %} Order {{ order.number }} | {{ block.super }} {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block header %}{% for field in order.shipping_address.active_address_fields %}
{{ field }}
{% endfor %}
{{ shipping_address.phone_number }}
{{ shipping_address.notes }}
{{ order.shipping_method }}
Product | Availability | Quantity | Line price excl tax | Line price incl tax | |
---|---|---|---|---|---|
{{ line.description }} | {{ line.product.stockrecord.availability }} | {{ line.quantity }} | {{ line.line_price_before_discounts_excl_tax|currency }} | {{ line.line_price_before_discounts_incl_tax|currency }} | |
{{ discount.description }} | -{{ discount.amount|currency }} | ||||
Basket total (inc. tax) | {{ order.basket_total_incl_tax|currency }} | ||||
Shipping charge (inc. tax) | {{ order.shipping_incl_tax|currency }} | ||||
Order total | {{ order.total_incl_tax|currency }} |