{% extends "showcase/cabinet/base_cabinet.html" %} {% load showcase_extras %} {% block title %}Analytics{% endblock %} {% block sidebar_title %} Analytics {% endblock %} {% block sidebar_nav %}
  • Dashboard
  • Reports
  • {% endblock %} {% block cabinet_content %} {# ── Row 1: KPI ── #}
    {% include "showcase/cabinet/widgets/kpi.html" with title="Monthly Revenue" value="$115,500" trend="+12%" trend_label="vs last month" icon="bi-graph-up" %}
    {% include "showcase/cabinet/widgets/kpi.html" with title="Monthly Appointments" value="47" trend="+8%" trend_label="vs last month" icon="bi-calendar-check" %}
    {% include "showcase/cabinet/widgets/kpi.html" with title="Total Clients" value="30" trend="+8" trend_label="this week" icon="bi-people" %}
    {% include "showcase/cabinet/widgets/kpi.html" with title="Average check" value="$2,457" trend="+3%" trend_label="vs last month" icon="bi-receipt" %}
    {# ── Row 2: Chart + Masters ── #}
    {% include "showcase/cabinet/widgets/chart.html" with title="Revenue" subtitle="last 7 days" icon="bi-bar-chart-line" chart_id="revenueChart" kpi_value="$115,500" kpi_trend="+12%" kpi_trend_label="vs last month" height="220" %}
    {% include "showcase/cabinet/widgets/list.html" with title="Top Specialists" subtitle="this month" icon="bi-trophy" items=masters %}
    {# ── Row 3: Donut + Top services ── #}
    {% include "showcase/cabinet/widgets/donut.html" with title="Services by categories" icon="bi-pie-chart" chart_id="servicesDonut" size="150" %}
    {% include "showcase/cabinet/widgets/list.html" with title="Top Services" subtitle="this month" icon="bi-star" items=top_services %}
    {% endblock %} {% block extra_js %} {% endblock %}