caisse-bliss/templates/expense/_delete_form.html.twig

5 lines
292 B
Twig
Raw Normal View History

2025-02-09 16:39:38 +01:00
<form method="post" action="{{ path('app_expense_delete', {'id': expense.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ expense.id) }}">
<button class="btn">Delete</button>
</form>