{% extends "oscar/customer/baseaccountpage.html" %} {% load currency_filters %} {% load display_tags %} {% load i18n %} {% load reviews_tags %} {% block extra_breadcrumbs %}
  • {% trans 'Order history' %}
  • {% endblock %} {% block tabcontent %} {% if order.status %}

    {% trans 'Status' %}

    {{ order.status }}


    {% endif %} {% for line in order.lines.all %} {% with product=line.product %} {% endwith %} {% endfor %} {% with discounts=order.basket_discounts %} {% block discount_totals %} {% if discounts %} {% for discount in discounts %} {% endfor %} {% endif %} {% endblock discount_totals %} {% block basket_total %} {% if discounts %} {% else %} {% endif %} {% endblock basket_total %} {% endwith %} {% block shipping_totals %} {% if order.has_shipping_discounts %} {% for discount in order.shipping_discounts %} {% endfor %} {% else %} {% endif %} {% endblock %} {% block order_total %} {% endblock order_total %}
    {% trans 'Product' %} {% trans 'Dispatch date' %} {% trans 'Qty' %} {% trans 'Line price excl. tax' %} {% trans 'Line price incl. tax' %}
    {% if product %} {% if product.is_public %}

    {{ line.description }}

    {% else %}

    {{ line.description }}

    {% endif %} {% 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 and product.is_public %}
    {% 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 }}
    {% block order_actions %}
    {% csrf_token %}
    {% endblock order_actions %}

    {% 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|default:"-" }} {{ order.shipping_address.notes|linebreaks }}
    {% endblock tabcontent %}