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

{% trans "My orders" %}

{% if orders %} {% for order in orders %} {% endfor %}
{% trans "Number" %} {% trans "Status" %} {% trans "Total price" %} {% trans "Added" %}
{{ order.number }} {{ order.status }} {{ order.total_price|money }} {{ order.added }}
{% else %}
{% trans "There are no orders." %}
{% endif %} {% endblock %}