{% if (convention.document is null or convention.document.statut == 'Créée') and permissionAccess.can('PERSONNALISER_FORMULE') %}
Personnaliser cette formule
{% endif %}
{% if convention.document is null and permissionAccess.can('EDITER_CONVENTION') %}
Éditer une convention
{% endif %}
Chargement de la formule...
{% if convention.document is not null %}
{{ convention.document.nom }}
Créé le {{ convention.document.createdAt | date('d/m/Y à H:i') }}
{{ convention.document.statut }}
{% if convention.document.statut == 'Créée' or convention.document.statut == 'Éditée' %}
{% if permissionAccess.can('EDITER_CONVENTION') %}
{% endif %}
{% if permissionAccess.can('SUPPRIMER_CONVENTION') %}
{% endif %}
{% elseif convention.document.statut == 'En attente de signature' %}
{% else %}
{% endif %}
{% else %}
Aucune convention n'a pas été créée
{% endif %}
Apports & paiements
{% if convention.recu is null and permissionAccess.can('CREER_APPORT') %}
Ajouter un apport
{% endif %}
Chargement des apports...
Reçu fiscal
{% include '@Projet/convention/ajax/_recu_action_link.html.twig' with { convention: convention } %}