{% extends 'base_catalog.html' %} {% load static %} {% load i18n %} {% block bread_scrumbs %} {% endblock %} {% block page_title %} {% endblock %} {% if object.get_events %} {% block head_scripts %} {% include "client/includes/banners/tops_head_js.html" %} {% endblock head_scripts %} {% endif %} {% block content_list %}

{{ object.name }}

    {% if object.capital %}
  • {% trans 'Столица' %}:{{ object.capital.name }}
  • {% endif %} {% if object.language.all %}
  • {% trans 'Официальный язык' %}: {% for lang in object.language.all %} {{ lang.name }} {% endfor %}
  • {% endif %} {% if object.timezone %}
  • {% trans 'Часовая зона' %}:{{ object.timezone }}
  • {% trans 'Часовые пояса' %}:{% trans "среднее время по Гринвичу" %}
  • {% endif %}
    {% if object.population %}
  • {% trans 'Население' %}:{{ object.population }} {% trans 'человек' %}
  • {% endif %} {% if object.phone_code %}
  • {% trans 'Телефонный код' %}:+ {{ object.phone_code }}
  • {% endif %} {% if object.currency.all %}
  • {% trans 'Валюта' %}: {% for currency in object.currency.all %} {{ currency.code }} {% endfor %} {% endif %}
{% if object.latitude %}
{% endif %}
{% if object.big_cities.all %}

{% trans 'Крупные города' %}:

 
{% endif %}
{% if object.description %}

{% trans 'Описание' %}

{{ object.description }}
{% endif %} {% if object.get_photos %}

{% trans 'Фотогалерея' %}


{% endif %} {% if object.rules %}

{% trans 'Визовая информация' %}

{{ object.rules }}
{% endif %} {% if object.documents or object.consulate %}

{% trans 'Документы' %}

    {{ object.documents }}
  {{ object.consulate }}
{% 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 %}