31 lines
627 B
Twig
31 lines
627 B
Twig
{% extends 'form.html.twig' %}
|
|
|
|
{% block title %}
|
|
Camera 📷 CRUD - Flash - Edit
|
|
{% endblock %}
|
|
|
|
{% block form %}
|
|
<h2>Flash edit</h2>
|
|
|
|
<div class="small callout">
|
|
<ul>
|
|
<li>
|
|
<a href="{{ path('flash_index') }}">Back to the list</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="large primary callout">
|
|
{{ form_start(form) }}
|
|
{{ form_widget(form) }}
|
|
<button type="submit" class="success button expanded">Update</button>
|
|
{{ form_end(form) }}
|
|
|
|
<hr />
|
|
|
|
{{ form_start(delete_form) }}
|
|
<button type="submit" class="alert button expanded">Delete Flash</button>
|
|
{{ form_end(delete_form) }}
|
|
</div>
|
|
{% endblock %}
|