{% load i18n %} {% if object_list.count %} {% if is_searching %}

{% blocktrans count counter=object_list.count %} There is one match {% plural %} There are {{ counter }} matches {% endblocktrans %}

{% endif %} {% include 'wagtaillinks/links/list.html' %} {% include 'wagtailadmin/shared/pagination_nav.html' with items=page_obj is_searching=is_searching linkurl='wagtaillinks:index' %} {% else %} {% if is_searching %}

There are 0 matches

{% blocktrans %}Sorry, no links match '{{ query_string }}'{% endblocktrans %}

{% else %} {% url 'wagtaillinks:add' as add_url %}

{% blocktrans %}You haven't added any links. Why not add one now?{% endblocktrans %}

{% endif %} {% endif %}