{% extends "base.html" %} {% set active_nav = "admin" %} {% block title %}User: {{ user.email }} - LSMC Hub{% endblock %} {% block content %} {% set user_euid = user.euid if user.euid is defined else user.id %}

User Information

Email
{{ user.email }}
Name
{{ user.name or '—' }}
Status
{{ 'Active' if user.is_active else 'Inactive' }}
Organization
{{ tenant_name or user.tenant_id }}

Roles & Permissions

{% for role in user.roles %} {{ role }} {% endfor %}

Permissions

    {% if 'ADMIN' in user.roles %}
  • ✓ Full administrative access
  • ✓ Manage users and organizations
  • ✓ Access all tenants
  • {% endif %} {% if 'INTERNAL_USER' in user.roles %}
  • ✓ Cross-tenant data access
  • ✓ Intake and processing
  • {% endif %} {% if 'EXTERNAL_USER' in user.roles %}
  • ✓ Access own tenant data
  • ✓ Create and view orders
  • {% endif %}

System Information

Cognito Subject
{{ user.cognito_sub }}
Tenant ID
{{ user.tenant_id }}
Created
{{ user.created_at | format_dt(user_preferences) if user.created_at else '—' }}
Last Updated
{{ user.updated_at | format_dt(user_preferences) if user.updated_at else '—' }}

Actions

{% if user.is_active %}
{% else %}
{% endif %}
{% endblock %}