|
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}New SerieFestival{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Create new SerieFestival</h1>
|
|
|
|
{{ include('serie_festival/_form.html.twig') }}
|
|
|
|
<a href="{{ path('app_serie_festival_index') }}">back to list</a>
|
|
{% endblock %}
|