{% 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() %}
{{ i18n.gettext('Username') }} | {{ i18n.gettext('Real name') }} | {{ i18n.gettext('Organisation') }} | {{ i18n.gettext('Email address') }} | {{ i18n.gettext('Phone number') }} | {% if context.is_retire_ok() %}{{ i18n.gettext('Retire') }} | {% endif %}
{{ user.username }} | {{ user.realname.plain() }} | {{ user.organisation.plain() }} | {{ user.address.email() }} | {{ user.phone.plain() }} | {% if context.is_retire_ok() %}{% endif %} |