{% extends "admin/layout.html" %} {% block admin_body %}

Manage Users

All uses with "master" privileges can give and revoke permissions from this page. You cannot change the passwords of other users and remove your own user or "master" privilege. Privileges are separated by commas — optional whitespace is ignored.

Privileges

{% if ask_confirmation %}

Confirm

{% trans amount=to_delete|length %} Do you really want to delete the user? {% pluralize %} Do you really want to delete {{ amount }} users? {% endtrans %}
{% endif %} {% if generated_user and generated_password %}

User Generated

The user {{ generated_user|e }} was generated successfully with the password {{ generated_password|e }}.
{% endif %} {% if user_exists %}

Username in User

The username {{ user_exists|e }} is in use. Select a different one.
{% endif %} {% if self_destruction %}

Error

You can't delete your own user or remove your own master privileges.
{% endif %} {% if add_user_mode %}

Add User

Username
{% endif %} {%- for user, privileges in users|dictsort %} {%- endfor %}
Username Privileges Delete
{{ user|e }}
{% endblock %}