{% extends "layout.html" %} {% block body %} {{ super() }}

Admin Dashboard

Manage users and roles

{# Display error message if any #} {% if id_to_add_is_duplicated or id_to_add_is_invalid or id_to_change_password_not_exists %}
Warning! {% if id_to_add_is_duplicated %} The account name already exists. {% elif id_to_add_is_invalid %} The account name is invalid. {% endif %}
{% endif %}

Add Account

Manage Existing Accounts

{% for number, user, role in users %} {% endfor %}
# User Role Action
{{ number }} {{ user }} {{ role }} Delete Update
{% endblock %}