{# notifications/index.html.twig #} {% extends 'base.html.twig' %} {% block specificjs %} {% endblock %} {% block page %}

Validations des absences et notifications

Voir les agents
{% if config('Multisites-nombre') > 1 %} {% endif %} {% for agent in agents %} {% if config('Multisites-nombre')>1 and agent.sites_list is defined %} {% elseif config('Multisites-nombre')>1 and not agent.sites_list is defined %} {% endif %} {% endfor %}
Nom Prénom Service StatutSitesValidations / notifications niveau 1 Validations / notifications niveau 2
{{ agent.nom }} {{ agent.prenom }} {{ agent.service | raw }} {{ agent.statut | raw }}{{ agent.sites_list }}  {% for manager in agent.managers %} {% if manager.level1 %} {{ manager.responsable.nom }} {{ manager.responsable.prenom | first }} {% if manager.notification_level1 %} - Notifications {% endif %}
{% endif %} {% endfor %}
{% for manager in agent.managers %} {% if manager.level2 %} {{ manager.responsable.nom }} {{ manager.responsable.prenom | first }} {% if manager.notification_level2 %} - Notifications {% endif %}
{% endif %} {% endfor %}
{% endblock %}