{% extends "base.html" %} {% set active_page = "advanced" %} {% block body %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
User Management
  • Access Requests
  • {% for user in users if user.name == '' or user.name is none %}
    {{ user.req_id }}
    {# Open grant access modal #} {#
    #} {# #} {# #} {# #} {#
    #}
    {{ user.valid_from }} until {{ user.valid_to }} validity: {{ user.token_validity_time }} seconds
    {% endfor %}

    {% for user in users if user.name is not none and user.name != '' %}
    {{ user.name }} {% if not user.active %} inactive {% endif %} {% if user.usermod %} admin {% endif %}
    {# User actions #} {% if user.active %}
    {% else %}
    {% endif %} {# Open user change modal #} {#
    #} {# #} {# #} {# #} {#
    #}
    {{ user.valid_from }} until {{ user.valid_to }} validity: {{ user.token_validity_time }} seconds
    {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}