{% extends "op_layout.html" %}
{% block title %}Operators — rustango operator console{% endblock %}
{% block content %}
Operators
Registry-scoped administrators. Mutations go through
cargo run -- create-operator <username> --password <p>
(routed through rustango::manage::Cli; substitute your
project's binary name if different).
{% if operators | length == 0 %}
No operators yet — create one with
cargo run -- create-operator.
{% else %}
IDUsernameActiveCreated
{% for op in operators %}
{{ op.id }}
{{ op.username }}
{% if op.active %}✓{% else %}—{% endif %}
{{ op.created_at }}
{% endfor %}
{% endif %}
{% endblock %}