LSBC/templates/podcast/_delete_form.html.twig

9 lines
309 B
Twig
Raw Normal View History

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) }}">
2024-02-25 20:18:24 +01:00
<button class="btn btn-danger">Delete</button>
</form>