{% extends "_base.html" %} {% load i18n %} {% block content %} {% load static %} {% load widget_tweaks %} {% load rules %}

{% with page_translations.first.title as page_title %} {% blocktrans %}Page versions of "{{ page_title }}"{% endblocktrans %} {% endwith %}

{% trans "Back to the page form" %}
{% csrf_token %}
{% trans "Version" %}:
{% trans "Author" %}:
{% trans "Date" %}:
{% for page_translation in page_translations reversed %} {% endfor %}
{% trans "deleted account" as deleted_user_text %} {% for page_translation in page_translations %} {% endfor %}
{% if not page.archived %} {% has_perm 'cms.change_page_object' request.user page as can_edit_page %} {% has_perm 'cms.publish_page_object' request.user page as can_publish_page %} {% if can_publish_page %} {% elif can_edit_page %} {% endif %} {% endif %}
{% endblock content %}