{% if seatingPlans|length > 0 %}
{{'Name' | trans}} |
{{'Sections' | trans}} |
{{'Total seats' | trans}} |
|
{% for seatingPlan in seatingPlans %}
{{ seatingPlan.name }}
|
{{ seatingPlan.design.sections|length }}
|
{{ seatingPlan.countTotalSeats }}
|
|
{% endfor %}
{% for seatingPlan in seatingPlans %}
{% endfor %}
{% else %}
{% include "Global/message.html.twig" with { type: "info", message: ('No seating plans found for this venue'|trans), icon: "fas fa-exclamation-circle" } %}
{% endif %}