{% extends CMS_TEMPLATE %} {% load i18n pcart_core cms_tags thumbnail %} {% block sidebar %}{% include "customers/includes/profile_menu.html" %}{% endblock %} {% block content %}

{% trans "My order" %}: {{ order.number }}

{% trans "Status" %}: {{ order.status }}
{% trans "Added" %}: {{ order.added }}

{{ order.get_payment_info }}
{{ order.get_shipping_info }}
{% if order.note %}
{{ order.note }}
{% endif %}
{% for item in order.items %} {% endfor %} {% if cart.total_weight > 0 %} {% endif %}
{% trans "Image" %} {% trans "Title" %} {% trans "Count" %} {% trans "Price" %}
{% with image=item.product.images.first %} {% if image %}{% endif %} {% endwith %} {{item.object.title}} {{item.quantity}} × {{item.price|money}} = {{item.line_price|money}}

{% trans "Subtotal" %}: {{order.total_price|money}}

{% with total_weight=order.total_weight %} {% if total_weight %}

{% trans "Weight" %}: {{total_weight|weight}}

{% endif %} {% endwith %}
{% trans "Weight" %}: {{cart.total_weight|weight}}
{% endblock %}