{% extends 'base.html' %} {% block content %}

Dashboard Overview

Welcome, {{ request.user.username }}
TODAY'S SALES

Rs. {{ sales_today|default:"0" }}

MONTHLY SALES

Rs. {{ sales_month|default:"0" }}

LOW STOCK

{{ low_stock_count }}

Recent Orders
View All
{% for order in recent_orders %} {% empty %} {% endfor %}
Invoice #DateParty NameTotal
#{{ order.id }} {{ order.created_at|date:"M d, H:i" }} {{ order.party_name|title }} Rs. {{ order.total_amount }}
No recent activity.
{% endblock %}