{% extends "baseEnseignant.html.twig" %} {% block titreContenu %}Accueil {% endblock %} {% block contenu%} {{ include('./promotion/listPromos.html.twig') }}

Réalisations professionnelles à viser

{% for rp in app.user.enseignant.rps%} {% if rp.statut.id != 4 %} {% endif %} {% endfor %}
Etudiant Source Libellé Nombre d'activités Date Statut Action
{{rp.etudiant.nom}} {{rp.etudiant.prenom}} {{rp.source.libelle}} {{rp.libcourt}} {{rp.activites.count}} {{rp.dateDebut | date("d/m/Y")}} {{rp.statut.libelle}} {% if rp.statut.id==4 %}-{% else %}Viser{% endif %}

Stages suivis

{% for stage in app.user.enseignant.stages %} {# on affiche que les stages à suivre (statut ASV) et dont la date de fin est supérieur à la date du jour + 1 mois (pour ne pas avoir les stages de 1ère et 2ème année en même temps #} {% if (stage.statut == 'ASV') and (stage.dateFin|date_modify("+ 2 month") >= ("now"|date("Y-m-d"))) %} {% else %} {% endif %} {% endfor %}
Etudiant Entreprise Nom tuteur Mail tuteur Tel tuteur Lieu
{{ stage.etudiant.nom}} {{stage.etudiant.prenom}} {{stage.nomEntreprise}} {{stage.nomTuteur}} {{stage.mailTuteur}} {{stage.telTuteur}} {{stage.ville}}
{% endblock %}