{% extends 'layout/page.html' %} {% block head_title %} {{ i18n.gettext('User listing') }} - {{ config.TRACKER_NAME }} {% endblock %} {% block page_header %} {{ i18n.gettext('User listing') }} {% endblock %} {% block content %} {% include 'layout/permission.html' %} {% if context.is_view_ok() %} {% if context.is_retire_ok() %} {% endif %} {% for user in context.list() %} {% if context.is_retire_ok() %} {% endif %} {% endfor %}
{{ i18n.gettext('Username') }} {{ i18n.gettext('Real name') }} {{ i18n.gettext('Organisation') }} {{ i18n.gettext('Email address') }} {{ i18n.gettext('Phone number') }}{{ i18n.gettext('Retire') }}
{{ user.username }} {{ user.realname.plain() }} {{ user.organisation.plain() }} {{ user.address.email() }} {{ user.phone.plain() }}
{% endif %} {% endblock %}