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