{% extends 'mtp_common/user_admin/base.html' %} {% load i18n %} {% load mtp_common %} {% block page_title %}{% trans 'Manage users' %} – {{ block.super }}{% endblock %} {% block admin_content %}

{% trans 'Manage users' %}

{% trans 'Add, view, edit or disable user accounts.' %} {% trans 'When you disable a user account, that user will be unable to log in.' %}

{% if locked_users_exist %}

{% trans 'If a user enters a wrong password too many times, they are locked out for a short period.' %} {% trans 'You can allow them to log in now by clicking ‘Unlock’.' %}

{% endif %}

{% trans 'Add a new user' %}

{% if account_requests %}

{% trans 'New user requests' %}

{% for account_request in account_requests %} {% endfor %}
{% trans 'Table of new user requests' %}
{% trans 'Name' %} {% trans 'Email' %}
{{ account_request.first_name }} {{ account_request.last_name }} {{ account_request.email }}
{% endif %}

{% trans 'Edit existing users' %}

{% for user in users %} {% if can_delete or user.is_active %} {% if user.user_admin %} {% else %} {% endif %} {% endif %} {% endfor %}
{% trans 'Table of existing users' %}
{% trans 'Name' %} {% trans 'Email' %}
{{ user.first_name }} {{ user.last_name }} {{ user.email }}
{% page_list page=page page_count=page_count %}

{% blocktrans trimmed count count=user_count %} {{ count }} user {% plural %} {{ count }} users {% endblocktrans %}

{% endblock %}