6 lines
362 B
Twig
6 lines
362 B
Twig
<form method="post" action="{{ path('kontaktperson_delete', {'id': kontaktperson.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
|
<input type="hidden" name="_method" value="DELETE">
|
|
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ kontaktperson.id) }}">
|
|
<button class="btn">Delete</button>
|
|
</form>
|