{% extends "base.html" %} {% block title %}Dashboard - Familiar Admin{% endblock %} {% block content %}

Dashboard

Last updated: just now

Active Users

{{ stats.active_users }}

👥

{{ stats.total_users }} total

Messages This Week

{{ usage.messages_week }}

💬

{{ usage.messages_today }} today

API Cost (MTD)

${{ "%.2f"|format(usage.api_cost_mtd) }}

💰

Budget: $60/month

Uptime (30d)

{{ usage.uptime_percent }}%

Target: 99.5%

Recent Activity

View all
{% include "_activity_list.html" %}

Users by Role

{% if user.role.value == 'admin' %} Manage {% endif %}
{% for role, count in stats.by_role.items() %}
{{ role }}
{{ count }}
{% endfor %}
{% set total = stats.total_users or 1 %} {% for role, count in stats.by_role.items() %}
{{ role }}
{{ count }}
{% endfor %}

Quick Actions

{% endblock %} {% block scripts %} {% endblock %}