{% extends "Global/layout.html.twig" %} {% form_theme form 'Global/jquery.collection.html.twig' %} {% set pagetitle = 'Add a new event' | trans %} {% if event.id %}{% set pagetitle = 'Update the event' | trans %}{% endif %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{ "dashboard_index": ('Dashboard' | trans), "dashboard_organizer_event": ('My events' | trans), "current":(pagetitle) }] %} {% include "Global/navigation.html.twig" with navigation %}
{% include "Global/message.html.twig" with { type: "info", icon: "fas fa-info-circle", message: ("The fields preceded with a red * are mandatory"|trans) } %} {{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }} {{ form_widget(form) }} {{ form_end(form) }}
{% endblock %} {% block javascripts %} {% endblock %}