{% extends "op_layout.html" %}
{% block title %}Organizations — rustango operator console{% endblock %}
{% block content %}
Organizations
Tenants the registry knows about. Mutations go through
manage create-tenant / manage drop-tenant.
{% if orgs | length == 0 %}
No tenants yet — provision one with
manage create-tenant <slug>.
{% else %}
slug
display name
mode
host pattern
active
created
{% for org in orgs %}
{{ org.slug }}
{{ org.display_name }}
{{ org.storage_mode }}
{% if org.host_pattern %}{{ org.host_pattern }}{% else %}—{% endif %}
{% if org.active %}✓{% else %}—{% endif %}
{{ org.created_at }}
{% endfor %}
{% endif %}
{% endblock %}