{% extends "layout.html" %} {% block head%} {{super()}} {% endblock %} {% block content %}

{{ _('Registered users') }}

{% for user in users|sort(attribute="nickname") %} {% endfor %}
# {{ _('Nickname') }} {{ _('Email') }} {{ _('Actions') }}
{{ loop.index }} {{ user.nickname }} {{ user.email }}

{{ _('Add a new user') }}

{{ _('As an administrator you are not listed in this table') }}.

{% endblock %}