{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% block body_class %}orders{% endblock %} {% block title %} Order statistics | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}

Filter

{% include "partials/form_fields_inline.html" with form=form %} Reset
Summary
Total orders {{ total_orders }}
Total lines {{ total_lines }}
Total revenue {{ total_revenue|currency }}
{% if order_status_breakdown %} {% for dict in order_status_breakdown %} {% endfor %}
Order status breakdown
Status Frequency
{{ dict.status }} {{ dict.freq }}
{% endif %} {% endblock dashboard_content %}