{% extends "base.html" %} {% block title %}{{ _("Platform Admin — Tenants") }}{% endblock %} {% block content %}
{# ── Header ── #}

admin_panel_settings {{ _("Platform Admin — All Tenants") }}

{# ── Tenant table ── #}
{% for org in orgs %} {% else %} {% endfor %}
{{ _("ID") }} {{ _("Name") }} {{ _("Slug") }} {{ _("Plan") }} {{ _("Users") }} {{ _("Onboarded") }} {{ _("Status") }} {{ _("Created") }}
{{ org.id }} {{ org.name }} {{ org.slug }} {% if org.plan == 'max' %} max {% elif org.plan == 'premium' %} premium {% elif org.plan == 'internal' %} internal {% else %} free {% endif %} {{ org.user_count }} {% if org.onboarding_complete %} check_circle {% else %} radio_button_unchecked {% endif %} {% if org.is_suspended %} block {{ _("Suspended") }} {% else %} check {{ _("Active") }} {% endif %} {{ org.created_at.strftime('%Y-%m-%d') if org.created_at else '—' }} {{ _("View") }} chevron_right
business {{ _("No tenants found.") }}
{% endblock %}