{% extends 'dashboard/base.html' %} {% load humanize %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard Overview{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
↑ 30-day
₦{{ total_revenue|floatformat:0|intcomma }}
Total Revenue
₦{{ month_revenue|floatformat:0|intcomma }} this month
{% if pending_orders > 0 %}{{ pending_orders }} pending{% endif %}
{{ total_orders }}
Total Orders
{{ pending_orders }} awaiting action
{% if low_stock > 0 %}{{ low_stock }} low stock{% endif %}
{{ total_products }}
Active Products
{{ low_stock }} low on stock
+{{ new_customers }}
{{ total_customers }}
Total Customers
{{ new_customers }} joined this month
Sales — Last 7 Days {% if staff_perms.can_view_analytics or staff_perms.is_superadmin %} Full Report → {% endif %}
Products by Category
Recent Orders {% if staff_perms.can_manage_orders or staff_perms.is_superadmin %} View All {% endif %}
{% for order in recent_orders %} {% empty %} {% endfor %}
OrderCustomerTotalStatus
#{{ order.order_number }}
{{ order.created_at|date:"M d" }}
{{ order.full_name }}
{{ order.items.count }} item{{ order.items.count|pluralize }}
₦{{ order.total|floatformat:0|intcomma }} {{ order.get_status_display }}

No orders yet

Top Selling Products {% if staff_perms.can_manage_products or staff_perms.is_superadmin %} All Products {% endif %}
{% for item in top_products %}
{{ forloop.counter }}
{{ item.product__name }}
{{ item.total_sold }} units sold
₦{{ item.total_rev|floatformat:0|intcomma }}
{% empty %}

No sales data yet

{% endfor %}
{% if staff_perms.is_superadmin %}
Recent Activity Full Log
{% for log in recent_logs %}
{{ log.user.username }} — {{ log.action }}
{{ log.timestamp|timesince }} ago
{% empty %}

No activity logged yet.

{% endfor %}
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}