{% 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 %}
{% endblock %}