{% load l10n %}
{% comment %}
The title field for a page in the page listing, when in 'choose' mode.
Expects a variable 'page', the page instance.
{% endcomment %}
{% if page.can_choose %}
{{ page.get_admin_display_title }}
{% else %}
{{ page.get_admin_display_title }}
{% endif %}
{% if show_locale_labels and page.depth == 2 %}
{{ page.locale.get_display_name }}
{% endif %}
{% include "shatailadmin/pages/listing/_privacy_indicator.html" with page=page %}
{% include "shatailadmin/pages/listing/_locked_indicator.html" with page=page %}