{% load i18n wagtailadmin_tags %} {% if locked_pages %} {% trans "Your locked pages" as heading %} {% panel id="locked-pages" heading=heading %} {% for page in locked_pages %} {% endfor %}
{% trans "Title" %} {% trans "Locked at" %}
{{ page.get_admin_display_title }} {% i18n_enabled as show_locale_labels %} {% if show_locale_labels and page.locale_id %} {% locale_label_from_id page.locale_id as locale_label %} {% status locale_label classname="status-tag--label" %} {% endif %} {% include "wagtailadmin/pages/listing/_privacy_indicator.html" with page=page %} {% include "wagtailadmin/pages/listing/_locked_indicator.html" with page=page %}
    {% if can_remove_locks %}
  • {% endif %}
  • {% trans "Edit" %}
  • {% if page.has_unpublished_changes and page.is_previewable %}
  • {% trans 'Draft' %}
  • {% endif %} {% if page.live %} {% with page_url=page.url %} {% if page_url is not None %}
  • {% trans 'Live' %}
  • {% endif %} {% endwith %} {% endif %}
{# Deliberately empty #} {% human_readable_date page.locked_at %}
{% endpanel %} {% endif %}