{% extends "layout/2-columns-left.html" %} {% load i18n template_tools %} {% block head %} {% endblock %} {% block subtitle %} {% trans 'User list' %} {% endblock %} {% block actions %} {% block extra_actions_before %}{% endblock %} {% if user.is_staff %} {% if user.is_superuser %} {% comment %} {% trans 'Merge users' %} {% endcomment %} {% endif %}
{% endif %} {% endblock %} {% block column_left %}
{% include 'extras/form.html' with form=filter.form %}
{% trans 'Reset' %}
{% endblock %} {% block column_main %}
{% if user.is_superuser %} {% endif %} {% comment 'Deactivate this until we revamp the email templates' %} {% if user.is_staff %} {% endif %} {% endcomment %} {% for mtpuser in mtpuser_list %} {% if user.is_superuser and not mtpuser.is_superuser %} {% endif %} {% comment 'Deactivate this until we revamp the email templates' %} {% if user.is_staff %} {% endif %} {% endcomment %} {% endfor %}
{% trans 'Username'%} {% trans 'First name'%} {% trans 'Last name'%} {% trans 'Email'%} {% trans 'Active / Inactive'%}{% trans 'Actions'%}{% trans 'Resend email'%}
{% if not mtpuser.is_superuser %}{% endif %} {{ mtpuser.username }} {{ mtpuser.first_name }} {{ mtpuser.last_name }} {{ mtpuser.email }} {% if mtpuser.is_deleted %} {% trans "Inactive" %} {% else %} {% trans "Active" %} {% endif %}
{% endblock %}