{% extends "layout.html" %} {% load currency_filters %} {% block breadcrumbs %} {% endblock %} {% block title %} Order history | {{ block.super }} {% endblock %} {% block header %} {% endblock header %} {% block content %}

Search in orders

{% include "partials/form_fields.html" with form=form %} Reset

{{ form.description }}

{% if orders %} {% for order in orders %} {% endfor %}
Order number Total inc tax Date submitted
{{ order.number }} {{ order.total_incl_tax|currency }} {{ order.date_placed }} View
{% csrf_token %}
{% else %}

No orders found

{% endif %} {% if page_obj %} {% include "catalogue/partials/pagination.html" %} {% endif %} {% endblock content %}