{% 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 'Go Back to Page Editor' %}
{% csrf_token %}
{% trans 'Version' %}:
{% trans 'Author' %}:
{% trans 'Date' %}:
{% for page_translation in page_translations reversed %} {% endfor %}
{% trans 'deleted user' as deleted_user_text %} {% for page_translation in page_translations %} {% endfor %}
{% has_perm 'cms.change_page_object' request.user page as can_edit_page %} {% if not page.archived %} {% if can_edit_page %} {% has_perm 'cms.publish_page_object' request.user page as can_publish_page %} {% if can_publish_page %} {% else %} {% endif %} {% endif %} {% endif %}
{% endblock %}