Offboarding
{% for task in offboarding_tasks %}
{{ task.titre }}
{% if task.description %}
{{ task.description }}
{% endif %}
Échéance : {{ task.dueDate ? task.dueDate|date('d/m/Y') : '-' }}
{% if task.statut != 'termine' and is_granted('EMPLOYEE_OFFBOARDING_MANAGE', salarie) %}
{% else %} {{ task.statut }} {% endif %}
{% else %}
Aucune tâche.
{% endfor %}