{% extends 'dashboard/layout.html' %}
{% load currency_filters %}
{% block body_class %}orders{% endblock %}
{% block breadcrumbs %}
{% endblock %}
{% block header %}
{% endblock %}
{% block dashboard_content %}
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 %}
Order stats for last 24 hours
Total orders |
{{ total_orders_last_day }} |
Total lines |
{{ total_lines_last_day }} |
Total revenue |
{{ total_revenue_last_day|currency }} |
Average order costs |
{{ average_order_costs|currency }} |
Customers
Total customers |
{{ total_customers }} |
New customers |
{{ total_customers_last_day }} |
Total open baskets |
{{ total_open_baskets_last_day }} |
Orders
Total orders |
{{ total_orders }} |
Total lines |
{{ total_lines }} |
Total revenue |
{{ total_revenue|currency }} |
Total open baskets |
{{ total_open_baskets }} |
Manage orders
Catalogue and stock
Total products |
{{ total_products }} |
Open stock alerts |
{{ total_open_stock_alerts }} |
Closed stock alerts |
{{ total_closed_stock_alerts }} |
Manage catalogue
View stock alerts
Offers, vouchers and promotions
Active Site Offers |
{{ total_site_offers }} |
Active Vouchers |
{{ total_vouchers }} |
Promotions |
{{ total_promotions }} |
{% endblock %}