{% load i18n wagtailadmin_tags %} {% if not page_perms %} {% page_permissions page as page_perms %} {% endif %} {% if page.locked and page_perms.can_unlock %} {% url 'wagtailadmin_pages:unlock' page.id as form_action %} {% elif not page.locked and page_perms.can_lock %} {% url 'wagtailadmin_pages:lock' page.id as form_action %} {% endif %}
{% if page.locked %} {% trans "This page is locked" %} {% else %} {% trans "This page is unlocked" %} {% endif %} {% csrf_token %} {% if page.locked %} {% if page_perms.can_unlock %} {% else %}
({% trans "You don't have permission to unlock" %})
{% endif %} {% else %} {% if page_perms.can_lock %} {% else %}
({% trans "You don't have permission to lock" %})
{% endif %} {% endif %}