{# This file is part of INGInious. See the LICENSE and the COPYRIGHTS files for #} {# more information about the licensing of this file. #} {% extends "layout.html" %} {% block title %}{{_("Users Administration") }}{% endblock %} {% block column %} {{ template_helper.call('main_menu', template_helper=template_helper) | safe }} {% endblock %} {% block navbar %} {% endblock %} {% block content %}

{{ _("Users Administration") }}

{% if feedback %}

{{feedback}}

{% endif %}
{% for user in all_users %} {% endfor %}
{{_("member")}} {{_("username")}} {{_("email address")}}
{{ all_users[user]["realname"] or all_users[user]["username"] }} {{all_users[user]["username"]}} {{all_users[user]["email"]}}
{% if all_users[user]["username"] != user_manager.session_username() %} {% if not all_users[user]["activated"] %} {% endif %} {% endif %}
{% endblock %}