{% extends "oscar/customer/baseaccountpage.html" %} {% load currency_filters %} {% load i18n %} {% load static %} {% block styles %} {{ block.super }} {% endblock %} {% block scripts %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block tabcontent %} {% if orders or form.is_bound %}

{% trans "Filter" %}

{% include "oscar/partials/form_fields.html" with form=form style='horizontal' %}
{% trans 'Reset' %}
{% endif %} {% if orders %}

{{ form.description }}

{% for order in orders %} {% endfor %}
{% trans "Order number" %} {% trans "Num items" %} {% trans "Total inc tax" %} {% trans "Date submitted" %}
{{ order.number }} {{ order.num_items }} {{ order.total_incl_tax|currency:order.currency }} {{ order.date_placed }}
{% include "oscar/partials/pagination.html" %} {% else %} {% if form.is_bound %}

{% trans "No orders match your search." %}

{% else %}

{% trans "You haven't placed any orders." %}

{% endif %} {% endif %} {% endblock tabcontent %}