{% include "partials/header.html.j2" %}

Users List

{{total_usrs | default(value="") }} items
New Signup {% if signup_mode != "open" %} Invite new User {% endif %}
{% if users %} {% for user in users %} {% if loop.index % 2 == 0%} {% set tr_css="bg-gray-100 dark:bg-gray-800" %} {% else %} {% set tr_css="bg-white dark:bg-gray-900" %} {% endif %} {% if user.isadmin == true %} {% set text_isadmin = '1' %} {% else %} {% set text_isadmin = '0' %} {% endif %} {% endfor %} {% endif %}
Name
Logs
Roles
Status
Is Admin
Open IDs
TOTP
Dates
{% set first = user.name | truncate(length=1, end="") | upper %}
{{user.name}}
{{user.fullname}}
{% set roles = user.roles | split(pat=",") %} {% for rol in roles %} {{rol}} {% endfor %} {% if user.status == "Active" %} {% set status_color="green" %} {% elif user.status == "Created" %} {% set status_color="blue" %} {% elif user.status == "Pending" %} {% set status_color="orange" %} {% elif user.status == "Lock" %} {% set status_color="red" %} {% else %} {% set status_color="yellow" %} {% endif %}
{{user.status}}
{% if user.isadmin == true %} admin {% endif %}
{% if users_openids and users_openids[loop.index0] %} {{ users_openids[loop.index0] | default(value='') }} {% endif %}
{% if user.otp_enabled == 1 %} Enabled {% endif %} {% if user.otp_verified == 1 %} Verified {% endif %}
{% if user.otp_defs != "" %}
defs: {{user.otp_defs}}
{% endif %}
{# Edit user #}
{{user.lastaccess}}
{{user.created}}
{% include "partials/modal_edit_user.html.j2" %}
{% include "partials/symbols.html.j2" %} {% include "partials/footer.html.j2" %}