{% extends "base.html" %} {% set active_page = 'admin_users' %} {% block title %}User Management - Ursa Customer Portal{% endblock %} {% block content %}
{% if error %}
{{ error }}
{% endif %} {% if success %}
Success

{{ success }}

{% endif %}

Add User

Set User Password

This sets a Cognito password. If "Force password change" is checked, the user must change it on next login.

Existing Users

{% if user_query %} Clear {% endif %}
{% if customers and customers|length > 0 %} {% for c in customers %} {% endfor %}
Email Customer Name Customer ID Admin Actions
{{ c.email | default('') }} {{ c.customer_name | default('') }} {{ c.customer_id | default('') }} {{ 'Yes' if c.is_admin else 'No' }} {% if c.email %}
{% if c.is_admin %} {% else %} {% endif %}
{% endif %}
{% else %}

No users found.

{% endif %}
{% endblock %}