collection-crud/templates/gpu/_delete_form.html.twig

5 lines
276 B
Twig

<form method="post" action="{{ path('gpu_delete', {'id': gpu.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ gpu.id) }}">
<button class="btn">Delete</button>
</form>