{% extends "admin/base_site.html" %}
{% block content %}
Operational Dashboard
₦{{ total_revenue|floatformat:2 }}
Total Revenue
{{ total_orders }}
Total Orders
{{ pending_orders }}
Pending Orders
{{ low_stock_count }}
Low Stock Items
Recent Orders
| Order ID |
User |
Amount |
Status |
{% for order in recent_orders %}
| #{{ order.id }} |
{{ order.user.username }} |
₦{{ order.total_amount }} |
{{ order.status }} |
{% endfor %}
Best Selling Products
| Product |
Price |
Stock |
{% for product in top_products %}
| {{ product.name }} |
₦{{ product.price }} |
{% if product.stock < 10 %}
{{ product.stock }}
{% else %}
{{ product.stock }}
{% endif %}
|
{% endfor %}
{% endblock %}