{% extends "settings/base.html" %} {% block subtitle %}Users{% endblock %} {% block content %}
{% for user in page_obj %} {{ user.email }} {{ user.num_identities }} identit{{ user.num_identities|pluralize:"y,ies" }} {% if user.banned %} Banned {% endif %} {% empty %}

{% if query %} No users match your query. {% else %} There are no users yet. {% endif %}

{% endfor %}
{% if page_obj.has_previous %} Previous Page {% endif %} {% if page_obj.has_next %} Next Page {% endif %}
{% endblock %}