{% extends "Global/layout.html.twig" %} {% set pagetitle = venue.name ~ " - " ~ ("Seating plans"|trans) %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{ "dashboard_index": ('Dashboard' | trans), "dashboard_organizer_venue": ('my venues' | trans), "current":(pagetitle) }] %} {% include "Global/navigation.html.twig" with navigation %}
{% if seatingPlans|length > 0 %}
{% for seatingPlan in seatingPlans %} {% endfor %}
{{'Name' | trans}} {{'Sections' | trans}} {{'Total seats' | trans}}
{{ seatingPlan.name }} {{ seatingPlan.design.sections|length }} {{ seatingPlan.countTotalSeats }}
{% 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 %}
{% endblock %} {% block javascripts %} {% endblock %}