{% extends "wagtailadmin/tables/column_header.html" %} {% load wagtailadmin_tags i18n %} {% block after_label %} {% if page_obj %} {% with start_index=page_obj.start_index end_index=page_obj.end_index result_count=page_obj.paginator.count %} {% if is_searching %} {% if is_searching_whole_tree %} {% blocktranslate trimmed %} {{ start_index }}-{{ end_index }} of {{ result_count }} across entire site. {% endblocktranslate %} {% blocktranslate trimmed with title=parent_page.get_admin_display_title %}Search within '{{ title }}'{% endblocktranslate %} {% else %} {% blocktranslate trimmed with title=parent_page.get_admin_display_title %} {{ start_index }}-{{ end_index }} of {{ result_count }} within '{{ title }}'. {% endblocktranslate %} {% translate "Search the whole site" %} {% endif %} {% else %} {% blocktranslate trimmed %} {{ start_index }}-{{ end_index }} of {{ result_count }} {% endblocktranslate %} {% endif %} {% endwith %} {% endif %} {% endblock %}