1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{% extends "op_layout.html" %}
{% block title %}Organizations — rustango operator console{% endblock %}
{% block content %}
Organizations
Tenants the registry knows about. Mutations go through
cargo run -- create-tenant / cargo run -- drop-tenant
(or whatever your project binary is — runs through
rustango::manage::Cli).
{% if orgs | length == 0 %}
No tenants yet — provision one with
cargo run -- create-tenant <slug>.
{% else %}
Slug
Display name
Mode
Host pattern
Active
Created
{% if edit_enabled %}{% endif %}
{% 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 }}
{% if edit_enabled %}Edit{% endif %}
{% endfor %}
{% endif %}
{% endblock %}