{% extends "layout.html" %} {% load currency_filters %} {% block title %} Order {{ order.number }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block content %}

Profile

Address:

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

Contact Number:

{{ shipping_address.phone_number }}

Shipping Notes:

{{ shipping_address.notes }}

Shipping method

{{ order.shipping_method }}

Order contents

{% csrf_token %} {% for line in order.lines.all %} {% endfor %} {% for discount in order.discounts.all %} {% endfor %}
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 }}
{% csrf_token %} Write a review
{{ 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 }}
{% endblock content %}