_delete_form.html.twig 314 B

1234
  1. <form method="post" action="{{ path('app_admin_delete', {'id': counter.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
  2. <input type="hidden" name="_token" value="{{ csrf_token('delete' ~ counter.id) }}">
  3. <button class="btn btn-del">{{ "Delete" | trans }}</button>
  4. </form>