{% extends 'base.html.twig' %} {% block title %}Pôle : {{ pole.nom }}{% endblock %} {% block body %} {% include 'utils/file.ariane.html.twig' %} Pôle {{ pole.nom }} Retour {% if secure.havePermission(constant('_ADD_SERV_GEST_TEAM', app_const)) %} Equipe {% endif %} Planning Responsable {{pole.responsable.prenom}} {{pole.responsable.nom}} {% if pole.equipes|length <= 0 %} Aucune équipe pour ce pole {% else %} {% for obj in pole.equipes %} {% if obj.icone != null and obj.icone|trim != "" %} {% endif %} {{obj.nom}} Consulter {% if secure.havePermission(constant('_UPDATE_SERV_GEST_TEAM', app_const)) %} Modifier {% endif %} {% if secure.havePermission(constant('_REMOVE_SERV_GEST_TEAM', app_const)) %} Supprimer {% endif %} {% endfor %} {% endif %} {% endblock %}