{% extends "base.html" %} {% set active_nav = "my-organization" %} {% block title %}Users - My Organization - LSMC Atlas{% endblock %} {% block content %}
{{ revision.name }}
| Name | EUID | Roles | Status | {% if can_manage_users %}Actions | {% endif %}|
|---|---|---|---|---|---|
| {{ user.name or '—' }} | {{ user.email }} | {{ user.id }} | {% for role in user.roles %} {{ role }} {% endfor %} | {{ 'Active' if user.is_active else 'Inactive' }} | {% if can_manage_users %}
{% if user.is_active %}
{% else %}
{% endif %}
|
{% endif %}
No users found in your organization.
{% if user.is_org_admin %} Add First User {% endif %}