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

{% blocktrans count counter=users|length %} There is one match {% plural %} There are {{ counter }} matches {% endblocktrans %}

{% search_other %} {% endif %} {% include "wagtailusers/users/list.html" %} {% include "wagtailadmin/shared/pagination_nav.html" with items=users is_searching=is_searching linkurl="wagtailusers_users:index" %} {% else %} {% if is_searching %}

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

{% search_other %} {% else %} {% url 'wagtailusers_create' as wagtailusers_create_url %}

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

{% endif %} {% endif %}