{% if 'operations' in components %}

Opérations en cours {% if operations %} {{ operations|length }} {% endif %}

{% if operations %}
{% for operation in operations %}

{{ operation.categorie|capitalize }} {{ operation.operation }} {% if operation.etat %} {{ operation.etat }} {% endif %}

Dossier {{ operation.numdossier }}
{% if operation.demandeur %}

Demande effectuée par {% for contact in contacts %} {% if contact.autorisation == operation.demandeur %} {{ contact.prenom }} {{ contact.marital }} {{ contact.nom }} {% endif %} {% endfor %}

{% endif %}

Demande du {{ operation.date|date("d/m/Y") }}

{% if operation.s %}

Opération réalisée par la société {{ operation.societe_coordonnee }} ans

{% endif %}
{% endfor %}
{% else %}

Aucune opération

{% endif %}
{% endif %}