{% load i18n %} {% if page_types_restricted %}

{% blocktrans with type=page_type.get_verbose_name %} Only pages of type "{{ type }}" may be chosen for this field. Search results will exclude pages of other types. {% endblocktrans %}

{% endif %} {% if not is_searching %}

{% trans "Explorer" %}

{% include "wagtailadmin/shared/breadcrumb.html" with page=parent_page choosing=1 %} {% else %}

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

{% endif %} {% if pages %} {% if is_searching %} {% include "wagtailadmin/pages/list.html" with choosing=1 show_parent=1 pages=pages parent_page=parent_page %} {% else %} {% include "wagtailadmin/pages/list.html" with choosing=1 allow_navigation=1 orderable=0 pages=pages parent_page=parent_page %} {% endif %} {% endif %}