{% load i18n wagtailadmin_tags %} {% if locked_pages %}

{% trans "Your locked pages" %}

{% for page in locked_pages %} {% endfor %}
{% trans "Title" %} {% trans "Locked at" %}
{{ page.get_admin_display_title }} {% 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 #}
{% blocktrans with time_period=page.locked_at|timesince_simple %}{{ time_period }}{% endblocktrans %}
{% endif %}