FestinHegre/templates/tables/_delete_form.html.twig

5 lines
283 B
Twig
Raw Permalink Normal View History

<form method="post" action="{{ path('app_tables_delete', {'id': table.id}) }}" onsubmit="return confirm('Es-tu sur de vouloir le supprimer ?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ table.id) }}">
<button class="btn">Supprimer</button>
</form>