{% extends "layout.html" %} {% load currency_filters %} {% load i18n %} {% block body_class %}account-pages{% endblock %} {% block breadcrumbs %} {% endblock %} {% block title %} {% trans 'Order history' %} | {{ block.super }} {% endblock %} {% block headertext %} {% trans 'Account' %} {% endblock %} {% block subnavigation %} {% include "partials/nav_profile.html" with order_history="active" %} {% endblock %} {% block subheader %}

{% trans 'Order history' %}

{% endblock subheader %} {% block content %}

{% trans 'Search in orders' %}

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

{{ form.description }}

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

{% trans 'No orders found' %}

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