{% extends "admin_base.html" %} {% block copyright %} {% endblock %} {% set body_id = 'user_list' %} {% set page_heading = 'Users' %} {% block body %} {{ super() }}
{{ users|length }} user{{ users|length|pluralize }} (add a new user)

The users list shows who is able to log into the image server, either via the login page or via the programmatic API. Logged in users can browse the image repository, and upload new images, run reports, and perform administrative functions if their permissions allow. A user typically belongs to one or more groups, with their access permissions coming from the groups.

{% set row_class = cycler('even', 'odd') %} {% for user in users %} {% set edit_url = url_for('admin.user_edit', user_id=user.id, embed=1) %} {% endfor %}
Username Name Email Action
{% if user.status == 0 %} Deleted {% else %} Active {% endif %} {{ user.username }} {{ user.get_full_name() }} {{ user.email }} {% if user.id != 1 and user.status != 0 %}
(delete)
{% endif %}
{% endblock %}