5 lines
346 B
Twig
5 lines
346 B
Twig
<form method="post" action="{{ path('response_delete', {'id': response.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' ~ response.id) }}">
|
|
<button class="btn">Delete</button>
|
|
</form> |