{% 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 == 'pro' %} pro {% elif org.plan == 'basic' %} basic {% 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 %}