{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags i18n %} {% block titletag %}{% blocktrans trimmed with title=parent_page.get_admin_display_title %}Exploring {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}page-explorer {% if ordering == 'ord' %}reordering{% endif %}{% endblock %} {% block content %} {% page_permissions parent_page as parent_page_perms %} {% include 'wagtailadmin/pages/page_listing_header.html' with title=parent_page.get_admin_display_title page_perms=parent_page_perms %}
{% include 'wagtailadmin/pages/index_results.html' %}
{% include 'wagtailadmin/bulk_actions/footer.html' with select_all_obj_text=_("Select all pages in listing") app_label='wagtailcore' model_name='page' objects=page_obj %} {% endblock %} {% block extra_js %} {{ block.super }} {% comment %} modal-workflow is required by the view restrictions interface {% endcomment %} {% comment %} The first column will display checkboxes only if ordering is not being carried out, in which case that column will have the drag and drop buttons to enable ordering {% endcomment %} {% if not show_ordering_column %} {% endif %} {% endblock %}