{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block body_class %}orders{% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {% trans "Dashboard" %} {% endblock %} {% block dashboard_content %}

{% trans "Last 24 hours" %}

{% trans "Latest Orders (Hourly)" %}

    {% 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|date:"G:i" }} {{ item.total_incl_tax|currency }}

{% endfor %}
{% trans "Order stats for last 24 hours" %}
{% trans "Total orders" %} {{ total_orders_last_day }}
{% trans "Total lines" %} {{ total_lines_last_day }}
{% trans "Total revenue" %} {{ total_revenue_last_day|currency }}
{% trans "Average order costs" %} {{ average_order_costs|currency }}
{% trans "Customers" %}
{% trans "Total customers" %} {{ total_customers }}
{% trans "New customers" %} {{ total_customers_last_day }}
{% trans "Total" %} {% trans "open" %} {% trans "baskets" %} {{ total_open_baskets_last_day }}

{% trans "All time" %}

{% trans "Orders" %}
{% trans "Total orders" %} {{ total_orders }}
{% trans "Total lines" %} {{ total_lines }}
{% trans "Total revenue" %} {{ total_revenue|currency }}
{% trans "Total" %} {% trans "open" %} {% trans "baskets" %} {{ total_open_baskets }}

{% trans "Manage orders" %}

{% trans "Catalogue and stock" %}
{% trans "Total products" %} {{ total_products }}
{% trans "Open" %} {% trans "stock alerts" %} {{ total_open_stock_alerts }}
{% trans "Closed" %} {% trans "stock alerts" %} {{ total_closed_stock_alerts }}

{% trans "Manage catalogue" %} {% trans "View stock alerts" %}

{% trans "Offers, vouchers and promotions" %}
{% trans "Active" %} {% trans "Site" %} {% trans "Offers" %} {{ total_site_offers }}
{% trans "Active" %} {% trans "Vouchers" %} {{ total_vouchers }}
{% trans "Promotions" %} {{ total_promotions }}
{% endblock %}