5d60d33db1
Volledige Foodlinkk Command Center uitbreiding met social automatisering, reclamefolder filters, Proxmox monitoring en documentatie.
19 lines
1.1 KiB
HTML
19 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<header class="page-header"><h1>Analytics</h1><p class="subtitle page-tip">Pipeline, clients, and agent activity from live database counts.</p></header>
|
|
<div class="kpi-grid">
|
|
<a href="/deals" class="kpi-card clickable-kpi"><div class="kpi-label">Pipeline EUR</div><div class="kpi-value">€{{ "%.0f"|format(metrics.pipeline) }}</div></a>
|
|
<a href="/clients" class="kpi-card purple clickable-kpi"><div class="kpi-label">Clients</div><div class="kpi-value">{{ metrics.clients }}</div></a>
|
|
</div>
|
|
<div class="grid-2">
|
|
<section class="panel"><h2>Deals by stage</h2>
|
|
<table class="data-table"><thead><tr><th>Stage</th><th>Count</th><th>Total</th></tr></thead>
|
|
<tbody>{% for row in metrics.deals_by_stage %}<tr><td>{{ row.stage }}</td><td>{{ row.cnt }}</td><td>€{{ row.total }}</td></tr>{% endfor %}</tbody></table>
|
|
</section>
|
|
<section class="panel"><h2>Events by agent</h2>
|
|
<table class="data-table"><thead><tr><th>Agent</th><th>Events</th></tr></thead>
|
|
<tbody>{% for row in metrics.events_by_agent %}<tr><td>{{ row.agent_name }}</td><td>{{ row.cnt }}</td></tr>{% endfor %}</tbody></table>
|
|
</section>
|
|
</div>
|
|
{% endblock %}
|