{% extends "base.html" %} {% set active_nav = "my-organization" %} {% block title %}Users - My Organization - LSMC Atlas{% endblock %} {% block content %}
{% if users %}
{% if can_manage_users %} {% endif %} {% for user in users %} {% if can_manage_users %} {% endif %} {% endfor %}
Name Email EUID Roles StatusActions
{{ user.name or '—' }} {{ user.email }} {{ user.id }} {% for role in user.roles %} {{ role }} {% endfor %} {{ 'Active' if user.is_active else 'Inactive' }}
{% if user.is_active %}
{% else %}
{% endif %}
{% else %}

No users found in your organization.

{% if user.is_org_admin %} Add First User {% endif %}
{% endif %}
{% endblock %}