{% load i18n wagtailadmin_tags %} {% load wagtailcore_tags %} {% if locked_pages %} {% panel id="locked-pages" heading=_("Your locked pages") classname="w-panel--dashboard" %} {% for page in locked_pages %} {% endfor %}
{% trans "Title" %} {% trans "Language" %} {% trans "Privacy and access" %} {% trans "Status" %} {% trans "Locked at" %}
{% 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="w-status--label" %} {% endif %} {% include "wagtailadmin/pages/listing/_privacy_indicator.html" with page=page %} {% include "wagtailadmin/pages/listing/_locked_indicator.html" with page=page %} {% include "wagtailadmin/shared/page_status_tag.html" with page=page %} {% human_readable_date page.locked_at %}
  • {% dropdown toggle_icon="dots-horizontal" toggle_aria_label=_("Actions") %} {% if can_remove_locks %} {% endif %} {% trans "Edit" %} {% if page.has_unpublished_changes and page.is_previewable %} {% trans 'Draft' %} {% endif %} {% if page.live %} {% pageurl page as page_url %} {% if page_url is not None %} {% trans 'Live' %} {% endif %} {% endif %} {% enddropdown %}
{% endpanel %} {% endif %}