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

Admin Dashboard

Manage tenants, check health, and configure the platform

{% if bootstrapped %} {% endif %} Health Check
Bootstrap Status
{% if bootstrapped %}
Ready
{% else %} {% endif %}
{{ broker_info.backend if broker_info else 'NATS' }} Server
{{ broker_info.host if broker_info else nats_host }}:{{ broker_info.port if broker_info else nats_port }}
{% if broker_info and broker_info.auth_method %}
{{ broker_info.auth_method }}
{% endif %}
Total Tenants
{{ tenant_count }}
Total Users
{{ user_count }}

Tenants

Auto-refreshing
{% include "admin/_tenants_table.html" %}
{% endblock %}