{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block body_class %}{{ block.super }} orders home{% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block extrascripts %} {{ block.super }} {# Translation support for JavaScript strings. #} {% endblock extrascripts %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {% trans "Dashboard" %} {% endblock %} {% block dashboard_content %}
{% trans "Store Statistics (Last 24 Hours)" %}

{% trans "Revenue" %}

    {% for y_value in hourly_report_dict.y_range %}
  • {{ y_value|currency }}
  • {% endfor %}
{% for item in hourly_report_dict.order_total_hourly %}
{{ item.end_time|time }} {{ item.total_incl_tax|currency }}

{% endfor %}
{% trans "Products and vouchers" %}
{% trans "Total products" %} {{ total_products }}
{% trans "Active Vouchers" %} {{ total_vouchers }}
{% endblock %}