{% if not actions|length %}
Aucun enregistrement trouvé !
{% else %}
Titre
Projet
Créateur
Destinataire
Date création
Date validation
Date clôture
Actions
{% for action in actions %}
{% if action.priorite %}
{% if action.titre!= null %} {{ action.titre }} {% else %} {{ action.intitule.label }} {% if action.projet is not null %}( {{action.projet.intitule}}{% if action.modules is not null %}: {{action.modules.label}}{% endif %} ){% endif %}{% endif %}
{% else %}
{% if action.titre!= null %} {{ action.titre }} {% else %} {{ action.intitule.label }} {% if action.projet is not null %}( {{action.projet.intitule}}{% if action.modules is not null %}: {{action.modules.label}}{% endif %} ){% endif %}{% endif %}
{% endif %}
{% if action.projet is not null %} {{action.projet.intitule}} {% else %} {% endif %}
{{ action.createur.lastName }} {{ action.createur.firstName }}
{{ action.destinataire.lastName }} {{ action.destinataire.firstName }}
{{ action.dateCreation |date('d-m-Y H:i', false) }}
{{ action.datefin |date('d-m-Y H:i', false) }}
{{ action.dateCloture |date('d-m-Y H:i', false) }}
{% endfor %}
{{ knp_pagination_render(actions) }}
{% endif %}