Files
contrib/templates/projet/_delete_form.html.twig
BRAMAS Arthur 02765a025e first commit
2025-10-13 17:26:15 +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>