{% extends "base.html" %} {% block title %}{{ _('Admin ยท Dashboard') }}{% endblock %} {% block content %} {% include "admin/_nav.html" %}

{{ _('Dashboard') }}

{{ _('Active listings') }}
{{ kpis.active_listings }}
{{ _('New users (7d)') }}
{{ kpis.new_users_7d }}
{{ _('New users (30d)') }}
{{ kpis.new_users_30d }}
{{ _('MRR') }}
${{ "%.2f"|format(kpis.mrr_cents / 100) }}
{{ _('Revenue (30d): subscriptions + boosts') }}
${{ "%.2f"|format(kpis.revenue_30d_cents / 100) }}
{{ _('Flag queue depth') }}
{{ kpis.flag_queue_depth }}
{% endblock %}