{# # Modal de confirmation pour supprimer une entreprise # Paramètres: company (objet), modal_id (string) #} {% embed '_molecules/modal/modal.html.twig' with { id: modal_id, title: 'Supprimer l\'entreprise', variant: 'danger', size: 'md' } %} {% block body %}

Êtes-vous sûr de vouloir supprimer définitivement l'entreprise « {{ company.name }} » ?

{% include '_atoms/button/button.html.twig' with { label: 'Annuler', variant: 'ghost', size: 'lg', attr: { onclick: "closeModal('" ~ modal_id ~ "')" } } only %}
{% include '_atoms/button/button.html.twig' with { label: 'Supprimer', variant: 'error', icon: 'trash', size: 'lg', type: 'submit', disabled: true, attr: { 'data-admin--company-delete-target': 'submitBtn' } } only %}
{% endblock %} {% endembed %}