2017-11-20 13:22:21 -05:00
|
|
|
{% extends 'form.html.twig' %}
|
2017-11-15 11:34:48 -05:00
|
|
|
|
2018-02-26 15:25:15 -05:00
|
|
|
{% block title %}
|
|
|
|
Camera 📷 CRUD - Previously Owned Flash - Edit
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-11-20 13:22:21 -05:00
|
|
|
{% block form %}
|
2018-02-14 15:08:03 -05:00
|
|
|
<h2>Edit Previously Owned Flash</h2>
|
2017-11-20 13:22:21 -05:00
|
|
|
|
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-20 13:22:21 -05:00
|
|
|
|
2017-11-22 13:49:31 -05:00
|
|
|
<div class="large primary callout">
|
2022-10-28 08:46:35 -04:00
|
|
|
{{ form_start(form) }}
|
|
|
|
{{ form_widget(form) }}
|
2018-07-16 14:03:02 -04:00
|
|
|
<button type="submit" class="success button expanded">Edit</button>
|
2022-10-28 08:46:35 -04:00
|
|
|
{{ form_end(form) }}
|
2017-11-20 13:22:21 -05:00
|
|
|
</div>
|
2017-11-15 11:34:48 -05:00
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|