{% extends "settings/base.html" %} {% load activity_tags %} {% block subtitle %}Users{% endblock %} {% block content %} {% for user in page_obj %} {% empty %} {% endfor %}
{{ user.email }} {% if user.admin %}Admin{% elif user.moderator %}Moderator{% endif %} {{ user.num_identities }} identit{{ user.num_identities|pluralize:"y,ies" }} {% if user.banned %} Banned {% endif %}
{% if query %} No users match your query. {% else %} There are no users yet. {% endif %}
{% include "admin/_pagination.html" with nouns="user,users" %} {% endblock %}