{% extends "layout.html" %} {% load currency_filters %} {% load i18n %} {% load reviews_tags %} {% load display_tags %} {% block headertext %} {% blocktrans with number=order.number %}Order #{{ number }}{% endblocktrans %} {% endblock %} {% block content %} {% if order.status %}
{{ order.status }}
{% endif %} {% with address=order.shipping_address %}{% trans 'Address' %} |
{% for field in address.active_address_fields %}
{{ field }} {% endfor %} |
---|---|
{% trans 'Contact number' %} | {{ address.phone_number }} |
{% trans 'Notes' %} | {{ address.notes|linebreaks }} |
{{ order.shipping_method }}
{% trans 'Product' %} | {% trans 'Status' %} | {% trans 'Estimated dispatch date' %} | {% trans 'Quantity' %} | {% trans 'Line price excl. tax' %} | {% trans 'Line price incl. tax' %} | {% iffeature "reviews" %}{% endiffeature %} |
---|---|---|---|---|---|---|
{{ line.description }} | {{ line.shipping_status|default:"-" }} | {{ line.est_dispatch_date|default:"-" }} | {{ line.quantity }} | {{ line.line_price_before_discounts_excl_tax|currency:order.currency }} | {{ line.line_price_before_discounts_incl_tax|currency:order.currency }} | {% iffeature "reviews" %}{% if line.product|is_review_permitted:user %} {% trans 'Write a review' %} {% endif %} | {% endiffeature %}
{{ discount.description }} | -{{ discount.amount|currency:order.currency }} |
{% trans 'Basket total (inc. tax)' %} | {{ order.basket_total_incl_tax|currency:order.currency }} |
---|---|
{% trans 'Shipping charge (inc. tax)' %} | {{ order.shipping_incl_tax|currency:order.currency }} |
{% trans 'Order total' %} | {{ order.total_incl_tax|currency:order.currency }} |