{% load i18n %} {% load template_filters %}
{% if place.place == 'place_exposition' %} {% if place.total_area %}
{% trans 'Общая выставочная площадь' %}
{{ place.total_area|int_format }} м²
{% endif %} {% else %} {% comment %} {% if place.total_capacity %}
{% trans 'Общая вместимость' %}
{{ place.total_capacity|int_format }}
{% endif %} {% endcomment %} {% 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 %}
{% if place.total_year_action %}
{% trans 'Ежегодно проводится' %}
{% if place.total_year_action.isdigit %} {% ifequal LANGUAGE_CODE 'ru' %} {% load pymorphy_tags %} {{ place.total_year_action }} {{ "событие"|plural:place.total_year_action }} {% else %} {{ place.total_year_action }} {% trans 'событий' %} {% endifequal %} {% else %} {{ place.total_year_action }} {% endif %}
{% endif %} {% if place.foundation_year %}
{% trans 'Основано в' %} {{ place.foundation_year }} {% trans 'году' %}
{% endif %}