{% extends 'base_catalog.html' %} {% load static %} {% load i18n %} {% block bread_scrumbs %} {% endblock %} {% block page_title %} {% endblock %} {% block content_list %}
{{ object.name }}
    {% if object.population %}
  • {% trans 'Население' %}:{{ object.population }} {% trans 'человек' %}
  • {% endif %} {% if object.code_IATA %}
  • Код IATA:{{ object.code_IATA.code }}
  • {% endif %} {% if object.phone_code %}
  • {% trans 'Телефонный код' %}:+{{ object.phone_code }}
  • {% endif %} {% if object.transport %}
  • {% trans 'Транспорт' %}:{{ object.transport }}
  • {% endif %}
{% if object.famous_places %} {% endif %} {% if object.shoping %} {% endif %}
{% trans 'Должны посетить' %}: {{ object.famous_places }}
{% trans 'Шоппинг' %}: {{ object.shoping }}
{% if object.description %}
Описание
{{ object.description }}
{% endif %} {% if object.get_photos %}
Фотогалерея
{% endif %}
{% if object.get_events %}
{% include 'includes/exposition/exposition_list.html' with object_list=object.get_events %}
{% endif %} {% if object.get_places %}
{% include 'includes/place/place_list.html' with object_list=object.get_places %}
{% endif %} {% if object.get_organisers %}
{% include 'includes/organiser/organiser_list.html' with object_list=object.get_organisers %}
{% endif %} {% endblock %}