{% extends "oscar/customer/order/order_detail.html" %} {% load currency_filters %} {% load display_tags %} {% load i18n %} {% load reviews_tags product_tags ocyan_thumbnail %} {% block extra_breadcrumbs %} {% endblock %} {% block tabcontent %}
{% 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 }}
{% for line in order.lines.all %} {% with product=line.product %}
{% block product_image %} {% with image=product.primary_image %} {% if product %} {% picture image.original '305x305' upscale=False alt=image.caption|default:line.title %} {% endif %} {% endwith %} {% endblock %} {% block product_description %}
{% block product_title %} {{ line.title|truncatechars:50 }} {% endblock %} {% block product_review %} {% iffeature "reviews" %}
{% include "oscar/catalogue/reviews/partials/stars.html" with rating=product.rating %} ({{product.num_approved_reviews}})
{% endiffeature %} {% endblock %} {% if product.description %}
{{ product.description|striptags|truncatechars:80 }}
{% endif %}
{% endblock %} {% block product_price %}
{% trans "Quantity" %}: {{line.quantity}}
{% if product and product.is_public %} {% include "oscar/catalogue/partials/stock_record.html" %}
{% csrf_token %}
{% else %} {% trans 'Not available anymore' %} {% endif %}
{% endblock %}
{% endwith %} {% endfor %} {% block order_actions %}
{% csrf_token %}
{% endblock %}
{% endblock tabcontent %}