{% extends "oscar/customer/baseaccountpage.html" %} {% load currency_filters %} {% load display_tags %} {% load i18n %} {% load reviews_tags %} {% block extra_breadcrumbs %}
{{ order.status }}
{% trans 'Product' %} | {% trans 'Qty' %} | {% trans 'Line price excl. tax' %} | {% trans 'Line price incl. tax' %} | ||
---|---|---|---|---|---|
{% if product %}
{% if product.is_public %}
{% else %}
{{ line.description }} {% endif %} {% iffeature "reviews" %} {% if product|is_review_permitted:user %} {% trans 'Write a review' %} {% endif %} {% endiffeature %} {% else %}{{ line.description }} {% endif %} |
{{ 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 %} {% 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 }} |
{{ order.shipping_method }}
{% 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 }} |