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

{% trans 'Profile' %}

{% 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 }}

{% trans 'Shipping method' %}

{{ order.shipping_method }}

{% trans 'Order contents' %}

{% csrf_token %} {% for line in order.lines.all %} {% endfor %} {% for discount in order.discounts.all %} {% endfor %}
{% trans 'Product' %} {% trans 'Availability' %} {% trans 'Quantity' %} {% trans 'Line price excl tax' %} {% trans '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 %} {% 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 }}
{% endblock content %}