12 lines
254 B
Twig
Raw Normal View History

2025-02-09 16:10:35 +01:00
{% extends 'base.html.twig' %}
2025-02-09 16:39:38 +01:00
{% block title %}New Festival{% endblock %}
2025-02-09 16:10:35 +01:00
{% block body %}
2025-02-09 16:39:38 +01:00
<h1>Create new Festival</h1>
2025-02-09 16:10:35 +01:00
2025-02-09 16:39:38 +01:00
{{ include('festival/_form.html.twig') }}
2025-02-09 16:10:35 +01:00
2025-02-09 16:39:38 +01:00
<a href="{{ path('app_festival_index') }}">back to list</a>
2025-02-09 16:10:35 +01:00
{% endblock %}