{% extends "controlpanel/layout.html" %} {% block title %}User list{% endblock %} {% block body_class %}plain-page admin {{ body_class }}{% endblock %} {% block subbreadcrumbs %}{% set navigation.sub = "user" %}{% endblock %} {% block body %}

Users{% if tag %} with tag {{ tag }}{% endif %}

{% for user in users %} {% endfor %}
Account Actions
{{ user.name }} {% if user.is_admin %} (Admin user) {% endif %} {% if user.is_deactivated %} (Deactivated user) {% endif %} {% if not user.password and user.name not in ("anonymous", "autologin") %} (User has not completed registration) {% endif %}
{% if user.name not in ("anonymous", "autologin") %} Edit user
{% endif %} View datasets for user User settings
{% include "components/pagination.html" %}
{% endblock %}