templates/commercial/fiches/_delete_form.html.twig line 1

Open in your IDE?
  1. <form method="post" action="{{ path('fiches_delete', {'id': fiche.id}) }}"
  2.       onsubmit="return confirm('Voulez-vous vraiment supprimer cette propositon commerciale ?');">
  3.     <input type="hidden" name="_token" value="{{ csrf_token('delete' ~ fiche.id) }}">
  4.     <button class="btn btn-danger delete-button" title="Supprimer la proposition commerciale">
  5.         <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-trash-fill" viewBox="0 0 16 16">
  6.             <path d="M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1H2.5zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5zM8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5zm3 .5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 1 0z"/>
  7.         </svg>
  8.     </button>
  9. </form>