{% extends "admin_base.html" %} {% block title %}Dashboard{% endblock %} {% block header_title %}Analytics & Orders{% endblock %} {% block content %}

Welcome back, Admin!

Your organic shop is performing well today. Check out the latest stats and orders below.

Total Orders

{{ stats.total }}

Pending

{{ stats.pending }}

Completed

{{ stats.completed }}

Total Visitors

{{ traffic_stats.total_visitors }}

Unique Users

{{ traffic_stats.unique_visitors }}

Orders & Revenue Trends

Top Visited Pages

{% for path, count in traffic_stats.top_paths %}

{{ path or '/' }}

{{ count }}
{% endfor %}

Recent Commissions

Overview of the last transactions from landing pages

{% for order in orders %} {% else %} {% endfor %}
Customer Info Shipping Details Items Transaction Status Courier Status Actions
{{ order.full_name }} {{ order.mobile_number }}

{{ order.shipping_address }}

{{ order.quantity }}
৳{{ order.total_price }} {{ order.timestamp | time_to_bd }}
{{ order.status }} {% if order.steadfast_consignment_id %}
#{{ order.steadfast_consignment_id }}
{{ order.steadfast_status or 'Sent' }}
{% else %} Deliver {% endif %}
{% if order.status == 'Pending' %} APPROVE {% endif %}
No Active Orders

Traffic Sources

{% for referrer, count in traffic_stats.top_referrers %}
{{ referrer or 'Direct Visit' }}
{{ count }}
{% endfor %}

Visitor Trends

{% endblock %}