{% load i18n %} {% load rules %} {% load content_filters %} {{ poi_translation.get_status_display }} {% if poi_translation %} {{ poi_translation.title }} {% else %} {% trans 'Translation not available' %} {% endif %} {% get_current_language as LANGUAGE_CODE %} {% get_language LANGUAGE_CODE as backend_language %} {% if backend_language and backend_language != language %} {% if poi.backend_translation %} {{ poi.backend_translation.title }} {% else %} {% trans 'Translation not available' %} {% endif %} {% endif %} {% spaceless %} {% for other_language in languages %} {% get_translation poi other_language.slug as other_translation %} {% if other_translation %} {% if other_translation.currently_in_translation %} {% elif other_translation.is_outdated %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %} {% endspaceless %} {{ poi.address }} {{ poi.postcode }} {{ poi.city }} {{ poi.country }} {% if poi_translation.status == PUBLIC %} {% else %} {% endif %} {% if perms.cms.delete_poi %} {% endif %}