2023-10-14 18:26:09 +02:00
|
|
|
<form
|
|
|
|
method="post"
|
|
|
|
action="{{ path('app_podcast_delete', {'id': podcast.id}) }}"
|
|
|
|
onsubmit="return confirm('Are you sure you want to delete this podcast?');"
|
|
|
|
>
|
|
|
|
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ podcast.id) }}">
|
|
|
|
<button class="btn">Delete</button>
|
2023-10-09 00:03:03 +02:00
|
|
|
</form>
|