FestinHegre/templates/reductions/_delete_form.html.twig
2024-11-21 15:11:11 +01:00

5 lines
299 B
Twig

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