{% extends "_base.html" %} {% load i18n %} {% load static %} {% load content_filters %} {% load page_filters %} {% load rules %} {% block content %} {% with filter_form.filters_visible as filters_visible %}

{% trans 'Archived Pages' %}

{% trans '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 %}
{% trans 'Hierarchy' %}{% trans 'Title in' %} {{ language.translated_name }}{% trans 'Title in' %} {{ backend_language.translated_name }}
{% spaceless %} {% for lang in languages %} {% endfor %} {% endspaceless %}
{% trans 'Status' %} {% trans 'Last updated' %} {% trans 'Options' %}
{% if filter_form.is_enabled %} {% trans 'No archived pages found with these filters.' %} {% else %} {% trans 'No pages archived yet.' %} {% endif %}
{% include "../generic_confirmation_dialog.html" %} {% include "pages/_page_preview_overlay.html" %} {% endblock %}