{% extends 'common/base.html' %} {% block title %} ERP - Dashboard {% endblock %} {% block content %}

Dashboard

Total Orders
Tk. {{total_amount}}
Since Today
Due Amount
Tk. {{total_due}}
Since Last Day
Total Shipping Cost
{{total_shipping_cost}}
Since Today
Pending Orders
{{pending_orders}}
Since Today
Last 10 Days Orders
Order Status
Top Sales Products
{% for product in top_products %}
{{ product.name_english }}

Price: {{ product.unit_price }}৳

Total Sales: {{ product.total_sales }}

{% endfor %}
{% for customer in customers %} {% empty %} {% endfor %}
# Customer Name Mobile Address Status Registered Action
{{ forloop.counter }} {{ customer.customer_name }}
{{ customer.email|default:"-" }}
{{ customer.mobile }} {{ customer.address|truncatewords:8 }} {% if customer.status %} Active {% else %} Inactive {% endif %} {{ customer.created|date:"Y-m-d" }} View
No customers found.
{% endblock %}