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

17 lines
346 B
Twig
Raw Normal View History

2018-04-05 17:24:43 +02:00
{% extends 'base.html.twig' %}
{% block body %}
<h1>Festival creation</h1>
{{ form_start(form) }}
{{ form_widget(form) }}
<input type="submit" value="Create" />
{{ form_end(form) }}
<ul>
<li>
<a href="{{ path('festival_index') }}">Back to the list</a>
</li>
</ul>
{% endblock %}