{% extends "page.html" %} {% block title %} User listing - {{ config.TRACKER_NAME }} {% endblock %} {% block content %} {% if not (context.is_view_ok() or request.user.hasRole('Anonymous')) %} You are not allowed to view this page. {% endif %} {% if not context.is_view_ok() and request.user.hasRole('Anonymous') %} Please login with your username and password. {% endif %} {% if context.is_view_ok() %} {% if context.is_edit_ok() %} {% endif %} {% for user in context.list() %} {% if context.is_edit_ok() %} {% endif %} {% endfor %}
Username Real name Organisation Email address Phone numberRetire
{{ user.username }} {{ user.realname.plain() }} {{ user.organisation.plain() }} {{ user.address.email() }} {{ user.phone.plain() }} retire
{% endif %} {% endblock %}