{% extends "dashboard/base.html" %} {% load i18n %} {% load prices_i18n %} {% load status %} {% block title %}{% trans "Orders" %} - {{ block.super }}{% endblock %} {% block body_class %}body-orders{% endblock %} {% block breadcrumbs %} {% endblock %} {% block menu_sales_class %} active{% endblock %} {% block content %} {% if object_list %} {% include "dashboard/includes/_status_filters.html" %}
{% include "dashboard/includes/_orders_table.html" with orders=object_list %}
{% include "dashboard/includes/_pagination.html" %}
{% else %}

{% trans "No orders." %}

{% endif %} {% endblock %}