Files
Projet_Symfony_Quentin/templates/projet/_delete_form.html.twig
2025-10-16 17:01:43 +02:00

5 lines
289 B
Twig

<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>