{% load i18n wagtailadmin_tags %}
{% if users %}

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

{% if is_searching %} {% search_other %} {% endif %} {% include "wagtailusers/users/list.html" %} {# call pagination_nav with no linkurl, to generate general-purpose links like
#} {% include "wagtailadmin/shared/pagination_nav.html" with items=users %} {% else %}

{% blocktrans trimmed %}Sorry, no users match "{{ query_string }}"{% endblocktrans %}

{% if is_searching %} {% search_other %} {% else %} {% url 'wagtailusers_users:add' as wagtailusers_add_url %} {% if group %} {% with group.name as group_name %}

{% blocktrans trimmed %}The {{ group_name }} group has no users configured. Why not add some?{% endblocktrans %}

{% endwith %} {% else %}

{% blocktrans trimmed %}There are no users configured. Why not add some?{% endblocktrans %}

{% endif %} {% endif %} {% endif %}
{% if filters %}

{% trans 'Filter' %}

{% for filter in filters.form %} {{ filter.label_tag }} {{ filter }} {{ filter.errors }} {% endfor %}
{% endif %}