--- action: 'shop:orders' template: inner protocol: all published: true name: Orders url: /orders ---

My Orders


{% if not orders or not orders.count %}

Orders not found

{% else %}
{% for order in orders if not order.is_quote %} {% set url = root_url('/order/'~order.id) %} {% endfor %}
# Date Status Total
{{ order.number }} {{ order.created_at.format('M jS, Y') }} {{ order.orderStatus.name }} {{ order.total|currency }}
{% endif %}