Files
contrib/templates/projet/_delete_form.html.twig

5 lines
289 B
Twig
Raw Permalink Normal View History

2025-10-13 17:26:15 +02:00
<form method="post" action="{{ path('app_projet_delete', {'id': projet.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ projet.id) }}">
<button class="btn">Delete</button>
</form>