31 lines
770 B
Twig
31 lines
770 B
Twig
|
{% extends 'form.html.twig' %}
|
||
|
|
||
|
{% block title %}Chipset - Edit{% endblock %}
|
||
|
|
||
|
{% block form %}
|
||
|
<h2>Edit Chipset</h2>
|
||
|
|
||
|
<div class="small callout">
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="{{ path('chipset_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) }}
|
||
|
|
||
|
<form method="post" action="{{ path('chipset_delete', {'id': chipset.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
||
|
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ chipset.id) }}">
|
||
|
<button type="submit" class="alert button expanded">Delete</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
{% endblock %}
|