hegresphere/templates/intern/_delete_form.html.twig

5 lines
289 B
Twig
Raw Normal View History

2024-11-21 17:04:56 +01:00
<form method="post" action="{{ path('app_intern_delete', {'id': intern.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ intern.id) }}">
<button class="btn">Delete</button>
</form>