{% load i18n %}

{% trans "Business information" %}

{% if business_service.business_tourism_max_capacity or business_service.equipped_meeting_rooms_quantity or business_service.adjustable_rooms_quantity %}

{% trans "Informations" %}

{% endif %} {% if business_service.characteristics.all %}

{% trans "Services" %}

{% endif %} {% if meeting_rooms %}

{% trans "Meetings rooms" %}

{% for room in meeting_rooms %}

{% if room.name %}{{ room.name }}{% else %}{% trans 'Meeting room' %} {{ forloop.counter }}{% endif %}

{% if room.descriptions.first %}

{{ room.descriptions.first.text }}

{% endif %} {% if room.capacity > 0 %}
{% trans "Capacity" %}
{% blocktrans count capacity=room.capacity %}{{ capacity }} person{% plural %}{{ capacity }} people{% endblocktrans %}
{% endif %} {% if room.area > 0 %}
{% trans "Area" %}
{{ room.area }} m2
{% endif %} {% if room.height %}
{% trans "Height" %}
{{ room.height }} m
{% endif %} {% if room.natural_lighting %}
{% trans "Natural light" %}
{% trans "Yes" %}
{% endif %} {% if room.roomlayout_set.all|length > 0 %}
{% trans "Disposition" %}
{% for layout in room.roomlayout_set.all %}
{{ layout.layout.name }}
{% if layout.capacity > 0 %}{{ layout.capacity }} {% trans "places" %}{% else %}{% trans "N.C" %}{% endif %}
{% endfor %} {% endif %}
{% endfor %}
{% endif %}