2017-11-09 11:53:01 -05:00
|
|
|
{% extends 'form.html.twig' %}
|
|
|
|
|
|
|
|
{% block form %}
|
|
|
|
<h1>Flash creation</h1>
|
|
|
|
|
2017-11-10 15:50:05 -05:00
|
|
|
<div class="small callout">
|
2017-11-09 11:53:01 -05:00
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="{{ path('flash_index') }}">Back to the list</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2017-11-10 15:50:05 -05:00
|
|
|
<div class="large primary callout">
|
2017-11-09 11:53:01 -05:00
|
|
|
{{ form_start(form) }}
|
|
|
|
{{ form_widget(form) }}
|
|
|
|
<button type="submit" class="button">Add</button>
|
|
|
|
{{ form_end(form) }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|