{% raw %}
{% load i18n core_tags %}
{# The title field for a page in the page listing, when in 'explore' mode #}
{% if page_perms.can_edit and 'edit' not in hide_actions|default:'' %}
{{ page.title }}
{% else %}
{{ page.title }}
{% endif %}
{% include "wagtailadmin/pages/listing/_privacy_indicator.html" with page=page %}
{% include "wagtailadmin/pages/listing/_locked_indicator.html" with page=page %}
{% render_translations page %}
{% if page_perms.can_edit and 'edit' not in hide_actions|default:'' %}
{% endif %}
{% if page_perms.can_delete and 'delete' not in hide_actions|default:'' %}
{% comment %}
BEGIN CUSTOM TEMPLATE LOGIC
Do not add delete button if Page should not be deleted
This applies to all Pages that inherit from PreventDeleteMixin
{% endcomment %}
{% should_hide_delete_button page as delete_hidden %}
{% if not delete_hidden %}
{# END CUSTOM TEMPLATE LOGIC #}
{# BEGIN CUSTOM TEMPLATE LOGIC #}
{% endif %}
{# END CUSTOM TEMPLATE LOGIC #}
{% endif %}
{% if page_perms.can_unpublish and 'unpublish' not in hide_actions|default:'' %}