{% extends "base.html" %} {% block content %}

Admin Control Bay

Portal User Management

Create, review, and manage access roles for the hosted control surface.

Back to Dashboard

Create User

Add admins, operators, or viewers for the hosted portal.

Users

Current portal accounts.

{% for user in users %} {% endfor %}
Username Email Role Active Last Login
{{ user.username }} {{ user.email }} {{ user.role }} {{ 'Yes' if user.is_active else 'No' }} {{ user.last_login_at or '-' }}
{% endblock %}