{% load i18n l10n wagtailadmin_tags %}
{# The title field for a page in the page listing, when in 'explore' mode #}
{% if page.is_site_root %}
{% if perms.wagtailcore.add_site or perms.wagtailcore.change_site or perms.wagtailcore.delete_site %}
{% icon name="site" classname="initial" %}
{% endif %}
{% endif %}
{% comment %}
Instead of adding the "page_{pk}_title" id to the td element
in _page_title_cell.html, add it to an element that only contains the
page title (and not other things e.g. the buttons or other indicators),
so that other elements can refer to title for screen reader purposes
without also reading out the buttons and indicators.
{% endcomment %}
{% fragment as page_title %}
{% if not page.is_site_root and not page.is_leaf %}{% icon name="folder" classname="initial" %}{% endif %}
{{ page.get_admin_display_title }}
{% endfragment %}
{% if page_perms.can_edit %}
{{ page_title }}
{% else %}
{{ page_title }}
{% endif %}
{% if show_locale_labels %}
{% status page.locale.get_display_name classname="w-status--label" %}
{% endif %}
{% include "wagtailadmin/pages/listing/_privacy_indicator.html" with page=page %}
{% include "wagtailadmin/pages/listing/_locked_indicator.html" with page=page %}