{% extends 'oscar/customer/order/order_detail.html' %} {% load i18n display_tags reviews_tags currency_filters %} {% block tabcontent %} {% block table_head %} {% endblock %} {% block table_body %} {% block order_lines %}

{% trans 'Order lines' %}

{% for line in order.lines.all %} {% with product=line.product %} {% endwith %} {% endfor %} {% endblock %} {% with discounts=order.basket_discounts %} {% block discount_totals %} {{block.super}} {% endblock discount_totals %} {% block basket_total %} {{block.super}} {% endblock basket_total %} {% endwith %} {% block shipping_totals %} {{block.super}} {% endblock %} {% block order_total %} {{block.super}} {% endblock order_total %} {% endblock %}
{% 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 %}
{% block order_actions %} {{block.super}}
{% endblock order_actions %} {% block shipping_method %}

{% trans 'Shipping Method' %}

{{ order.shipping_method }}


{% endblock %} {% block shipping_address %}

{% trans 'Shipping Address' %}

{% trans 'Address' %} {% trans 'Contact Number' %} {% trans 'Shipping Notes' %}
{% for field in order.shipping_address.ordered_active_address_fields %} {{ field }}
{% endfor %}
{{ order.shipping_address.phone_number|default:"-" }} {{ order.shipping_address.notes|linebreaks }}
{% endblock %} {% endblock tabcontent %}