{# # Modal de confirmation pour activer/désactiver une entreprise # Paramètres: company (objet), modal_id (string) #} {% embed '_molecules/modal/modal.html.twig' with { id: modal_id, title: company.isActive ? 'Désactiver l\'entreprise' : 'Réactiver l\'entreprise', icon: 'power', variant: company.isActive ? 'warning' : 'success', size: 'md' } %} {% block body %} {% if company.isActive %}

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

{% else %}

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

{% endif %} {% endblock %} {% block footer %} {% 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: company.isActive ? 'Désactiver' : 'Réactiver', variant: company.isActive ? 'warning' : 'success', icon: 'power', size: 'lg', type: 'submit' } only %}
{% endblock %} {% endembed %}