{% extends "op_layout.html" %}
{% block title %}Operators — rustango operator console{% endblock %}
{% block content %}
Operators
Registry-scoped administrators. Mutations go through
manage create-operator <username> --password <p>.
{% if operators | length == 0 %}
No operators yet — create one with
manage create-operator.
{% else %}
idusernameactivecreated
{% for op in operators %}
{{ op.id }}
{{ op.username }}
{% if op.active %}✓{% else %}—{% endif %}
{{ op.created_at }}
{% endfor %}
{% endif %}
{% endblock %}