caisse-bliss/templates/serie_festival/_delete_form.html.twig
2025-02-14 14:25:23 +01:00

5 lines
313 B
Twig

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