{% 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 'Locations on map' %}

{% trans 'Archived locations' %} ({{ archived_count }})
{% include "generic_language_switcher.html" with target='pois' %} {% include "search_input_form.html" with object_type="poi" %}
{% if request.region.default_language == language and perms.cms.change_poi %} {% trans 'Create location' %} {% else %} {% blocktrans trimmed asvar disabled_button_title with request.region.default_language.translated_name as default_language %} You can only create locations in the default language ({{ default_language }}). {% endblocktrans %} {% endif %}
{% 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_row.html" %} {% empty %} {% endfor %}
{% trans 'Title in' %} {{ language.translated_name }}{% trans 'Title in' %} {{ backend_language.translated_name }}
{% spaceless %} {% for lang in languages %} {% endfor %} {% endspaceless %}
{% trans 'Status' %} {% trans 'Street' %} {% trans 'Postal Code' %} {% trans 'City' %} {% trans 'Country' %} {% trans 'Options' %}
{% if search_query %} {% trans 'No locations found with these filters.' %} {% else %} {% trans 'No locations available yet.' %} {% endif %}
{% include "../generic_confirmation_dialog.html" %} {% url "pois" as url %} {% include "pagination.html" with url=url chunk=pois %} {% endblock content %}