{% load static %} {% load i18n %} {% load template_filters %} {% block page_body %}
{{ place.name|safe }}
{{ place.description|safe|linebreaks }}
{% trans 'Далее...' %} {% if place.address %} {% else %}
{% endif %}
Услуги
    {% if place.bank %}
  • {% trans 'Банк / банкоматы / обмен валюты' %}
  • {% endif %} {% if place.wifi %}
  • Wi-Fi
  • {% endif %} {% if place.children_room %}
  • {% trans 'Детская комната' %}
  • {% endif %} {% if place.disabled_service %}
  • {% trans 'Сервис для инвалидов' %}
  • {% endif %}
    {% if place.conference_centre %}
  • {% trans 'Конгресс-центр' %}
  • {% endif %} {% if place.business_centre %}
  • {% trans 'Бизнес-центр' %}
  • {% endif %} {% if place.online_registration %}
  • {% trans 'Онлайн-регистрация' %}
  • {% endif %} {% if place.cafe %}
  • {% trans 'Кафе и рестораны' %}
  • {% endif %}
    {% if place.terminals %}
  • {% trans 'Информационные терминалы' %}
  • {% endif %} {% if place.parking %}
  • {% trans 'Парковка' %}
  • {% endif %} {% if place.press_centre %}
  • {% trans 'Пресс-центр' %}
  • {% endif %} {% if place.mobile_application %}
  • {% trans 'Мобильное приложение' %}
  • {% endif %}

{% if place.photogallery %} {% with photos=place.photogallery.photos.all|slice:"5" %}
{% trans 'Фотогалерея' %}
{% endwith %} {% endif %}
{% if place.total_area %}
{% trans 'Общая выставочная площадь' %}
{{ place.total_area|int_format }} м²
{% endif %}
{% if place.closed_area %}
{{ place.closed_area|int_format }} {% trans 'м²' %} {% trans 'закрытая выставочная площадь' %}
{% endif %} {% if place.open_area %}
{{ place.open_area|int_format }} {% trans 'м²' %} {% trans 'открытая выставочная площадь' %}
{% endif %}
    {% for hall in place.halls.all %} {% if not forloop.counter|divisibleby:"2" %}
  • {{ hall.name }} {% if hall.number %} №{{ hall.number }} {% endif %} — {{ hall.capacity }} м2
  • {% endif %} {% endfor %}
    {% for hall in place.halls.all %} {% if forloop.counter|divisibleby:"2" %}
  • {{ hall.name }} {% if hall.number %} №{{ hall.number }} {% endif %} — {{ hall.capacity }} м2
  • {% endif %} {% endfor %}
{{ place.total_year_action }}
{% if place.foundation_year %}
{% trans 'Основано в' %} {{ place.foundation_year }} {% trans 'году' %}
{% endif %}
{% if place.get_scheme %}
{% trans 'Схема павильонов' %}
{% for scheme in place.get_scheme %} {% ifequal scheme.file_path.url|slice:"-3:" 'pdf' %} {% trans 'Схема в pdf' %} {% else %}
{% endifequal %}
{% endfor %}
{% endif %}
{% trans 'Контактная информация' %}
{{ place.adress }}
    {% if place.phone %}
  • {{ place.phone|phone }} ({% trans 'телефон' %})
  • {% endif %} {% if place.fax %}
  • {{ place.fax|phone }} ({% trans 'факс' %})
  • {% endif %}
{% if place.events %}
{% trans 'Список событий' %}
{% endif %}
{% include 'client/includes/booking_block.html' with city=place.city place=place %}
{% if place.get_nearest_places %}
{% trans 'Ближайшие выставочные центры' %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}