collection-crud/templates/previouslyownedflash/edit.html.twig

23 lines
450 B
Twig
Raw Normal View History

{% extends 'form.html.twig' %}
2017-11-15 11:34:48 -05:00
{% block form %}
2018-02-14 15:08:03 -05:00
<h2>Edit Previously Owned Flash</h2>
2018-02-14 15:08:03 -05:00
<div class="small callout">
<ul>
<li>
<a href="{{ path('previously-owned-flash_index') }}">Back to the list</a>
</li>
</ul>
</div>
2017-11-22 13:49:31 -05:00
<div class="large primary callout">
2018-02-14 15:08:03 -05:00
{{ form_start(edit_form) }}
{{ form_widget(edit_form) }}
<button type="submit" class="success button">Edit</button>
{{ form_end(edit_form) }}
</div>
2017-11-15 11:34:48 -05:00
{% endblock %}