{% extends "Global/layout.html.twig" %} {% form_theme form 'Global/jquery.collection.html.twig' %} {% set pagetitle = 'Add a new seating plan' | trans %} {% if seatingPlan.id %}{% set pagetitle = 'Update the seating plan' | trans %}{% endif %} {% block title %}{{pagetitle}}{% endblock %} {% block stylesheets %} {% endblock %} {% block content %} {% set navigation = [{ "dashboard_index": ('Dashboard' | trans), "dashboard_organizer_venue": ('my venues' | trans), "current":(pagetitle) }] %} {% include "Global/navigation.html.twig" with navigation %}
{{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }} {{ form_errors(form) }} {{ form_row(form.translations) }}
{% include "Global/message.html.twig" with { type: "info", message: ('
  • Make sure to place the stage and the sections within the designer
  • Once assigned to an event date, a seating plan can not be edited anymore, you can duplicate it and create a new version and apply the desired changes to the duplicated version.
'|trans), icon: "fas fa-exclamation-circle" } %}
{{ form_row(form.save) }} {{ form_end(form) }}
{% endblock %} {% block javascripts %} {% endblock %}