{% extends "customer/baseaccountpage.html" %} {% load url from future %} {% load currency_filters %} {% load display_tags %} {% load i18n %} {% load reviews_tags %} {% block extra_breadcrumbs %}
  • {% trans 'Order history' %} /
  • {% endblock %} {% block tabcontent %} {% for line in order.lines.all %} {% with product=line.product %} {% endwith %} {% endfor %} {% with discounts=order.basket_discounts %} {% if discounts %} {% for discount in discounts %} {% endfor %} {% else %} {% endif %} {% endwith %} {% if order.has_shipping_discounts %} {% for discount in order.shipping_discounts %} {% endfor %} {% else %} {% endif %}
    {% trans 'Product' %} {% trans 'Dispatch date' %} {% trans 'Qty' %} {% trans 'Line price excl tax' %} {% trans 'Line price incl tax' %}
    {% if product %}

    {{ line.description }}

    {% iffeature "reviews" %} {% if product|is_review_permitted:user %} {% trans 'Write a review' %} {% endif %} {% endiffeature %} {% else %}

    {{ line.description }}

    {% endif %}
    {{ 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 }} {% if product %}
    {% csrf_token %}
    {% else %} {% trans 'Not available anymore' %} {% endif %}
    {% trans "Basket total (excl. discounts)" %} {{ order.basket_total_before_discounts_incl_tax|currency:order.currency }}
    {% trans "Discount" %} {{ discount.offer_name }} - {{ discount.amount|currency:order.currency }}
    {% trans "Basket total (inc. discounts)" %} {{ order.basket_total_incl_tax|currency:order.currency }}
    {% trans "Basket total" %} {{ order.basket_total_incl_tax|currency:order.currency }}
    {% trans "Shipping total (excl. discounts)" %} {{ order.shipping_before_discounts_incl_tax|currency:order.currency }}
    {% trans "Discount" %} {{ discount.offer_name }} - {{ discount.amount|currency:order.currency }}
    {% trans "Shipping total (inc. discounts)" %} {{ order.shipping_incl_tax|currency:order.currency }}
    {% trans "Shipping total" %} {{ order.shipping_incl_tax|currency:order.currency }}
    {% trans 'Order total' %} {{ order.total_incl_tax|currency:order.currency }}
    {% csrf_token %}

    {% trans 'Shipping Method' %}

    {{ order.shipping_method }}


    {% trans 'Shipping Address' %}

    {% trans 'Address:' %} {% trans 'Contact Number:' %} {% trans 'Shipping Notes:' %}

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

    {{ order.shipping_address.phone_number }}

    {{ order.shipping_address.notes }}

    {% endblock tabcontent %}