caisse-bliss/app/Resources/views/seriefestival/new.html.twig

17 lines
358 B
Twig
Raw Normal View History

2019-06-12 15:24:13 +02:00
{% extends 'base.html.twig' %}
{% block body %}
<h1>Création de série de festival</h1>
{{ form_start(form) }}
{{ form_widget(form) }}
<input type="submit" value="Create"/>
{{ form_end(form) }}
<ul>
<li>
<a href="{{ path('seriefestival_index') }}">Retour à la liste</a>
</li>
</ul>
{% endblock %}