{% 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 %}
{% else %}
{% trans 'Latest Links' %}
{% endif %}
{% include 'wagtaillinks/links/list.html' with choosing=1 %}
{% include 'wagtailadmin/shared/pagination_nav.html' with items=page_obj is_ajax=1 %}
{% endif %}