{% extends "_base.html" %} {% load i18n %} {% load static %} {% load content_filters %} {% load page_filters %} {% load rules %} {% block content %} {% has_perm 'cms.change_page_object' request.user as can_edit_pages %} {% with filter_form.filters_visible as filters_visible %}

{% translate "Archived Pages" %}

{% translate "Page Tree" %}
{% include "generic_language_switcher.html" with target="archived_pages" %} {% include "_search_input.html" with object_type="page" object_archived=True related_form="page-filter-form" %}
{% if request.user.expert_mode %} {% endif %}
{% include "pages/_page_filter_form.html" %}
{% endwith %}
{% csrf_token %}
{% if not filter_form.is_enabled %} {% endif %} {% get_current_language as LANGUAGE_CODE %} {% get_language LANGUAGE_CODE as backend_language %} {% if backend_language and backend_language != language %} {% endif %} {% for page in pages %} {% get_translation page language.slug as page_translation %} {% include "pages/page_tree_archived_node.html" with page_translation=page_translation %} {% empty %} {% endfor %}
{% translate "Hierarchy" %}{% translate "Title in" %} {{ language.translated_name }} {% translate "Title in" %} {{ backend_language.translated_name }}
{% spaceless %} {% for lang in languages %} {% endfor %} {% endspaceless %}
{% translate "Status" %} {% translate "Last updated" %} {% translate "Options" %}
{% if filter_form.is_enabled %} {% translate "No archived pages found with these filters." %} {% else %} {% translate "No pages archived yet." %} {% endif %}
{% if can_edit_pages %}
{% endif %}
{% include "../generic_confirmation_dialog.html" %} {% include "pages/_page_preview_overlay.html" %} {% endblock content %}