{% extends "_base.html" %} {% load i18n %} {% load rules %} {% load static %} {% load content_filters %} {% block content %} {% get_current_language as LANGUAGE_CODE %} {% get_language LANGUAGE_CODE as backend_language %}

{% trans 'Archived locations' %}

{% include "generic_language_switcher.html" with target='archived_pois' %} {% include "search_input_form.html" with object_type="poi" object_archived=True %}
{% csrf_token %}
{% if backend_language and backend_language != language %} {% endif %} {% for poi in pois %} {% get_translation poi language.slug as poi_translation %} {% include "pois/poi_list_archived_row.html" %} {% empty %} {% endfor %}
{% trans 'Title in' %} {{ language.translated_name }}{% trans 'Title in' %} {{ backend_language.translated_name }}{% trans 'Status' %} {% trans 'Street' %} {% trans 'Postal Code' %} {% trans 'City' %} {% trans 'Country' %} {% trans 'Options' %}
{% trans 'No locations archived yet.' %}
{% include "../generic_confirmation_dialog.html" %} {% url "pois" as url %} {% include "pagination.html" with chunk=pois %} {% endblock %}