Files
herbarium/templates/species/_delete_form.html.twig
bastien ollier b7a750604a update form
2024-06-07 15:58:55 +02:00

5 lines
292 B
Twig

<form method="post" action="{{ path('app_species_delete', {'id': species.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ species.id) }}">
<button class="btn">Delete</button>
</form>