{% comment %}
The parent field for a page in the page listing, when in 'choose' mode.
Expects a variable 'page', the page instance.
{% endcomment %}
{% with page.get_parent as parent %}
{% if parent %}
{{ parent.get_admin_display_title }}
{% if show_locale_labels %}{{ parent.locale.get_display_name }}{% endif %}
{% endif %}
{% endwith %}