2025-02-09 16:39:38 +01:00

14 lines
331 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Edit Festival{% endblock %}
{% block body %}
<h1>Edit Festival</h1>
{{ include('festival/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_festival_index') }}">back to list</a>
{{ include('festival/_delete_form.html.twig') }}
{% endblock %}