{% extends 'layout.html.twig' %} {% set seo_title = 'Order History' %} {% block content %}

Order History

Below is a complete record of your orders placed with Texstyle. Please click the 'View' button for more detailed order information.

{% if orders is empty %}
Place your first order
{% else %} {% for order in orders %} {% endfor %}
Date Confirmation No. Order Status
Date
{{ order.orderDate|date('d.m.y') }}
Confirmation No.
{{ order.orderNumber }}
Order Status
{% if order.orderStatus == 'new' %}
Awaiting Shipment
{% elseif order.orderStatus == 'partial_shipped' %}
Partially Shipped
{% elseif order.orderStatus == 'complete' %}
Shipped
{% else %}
Unknown
{% endif %}
View
{% endif %}
{% endblock %}