{% extends "backoffice/layout/layout.html.twig" %} {% block page_title %}{{ site_titre }} - Backoffice - Étudiants{% endblock %} {% block stylesheets %} {% endblock %} {% block h2 %}Évaluations étudiant{% endblock %} {% block content %} {% set url_back = '' %} {% if app.request.get('_route') == 'bo.etudiant.evaluation.graphique' %} {% set url_back = path('bo.etudiant.evaluations', {id: from_etudiant.id}) %} {% else %} {# sinon on vient de la page résultats par promo / UE / semestre #} {% set url_back = path('bo.resultats.par_ue_et_promo', {code: evaluation.uniteEnseignement.code, promo: evaluation.sessionEvaluation.promotion.libelle, semestre: semestre.id}) ~ '#etu-' ~ from_etudiant.id %} {% endif %} < Retour à la page précédente

SESSION : {{ evaluation.sessionEvaluation.date|date('d/m/Y') }} (semestre {{ semestre.id }}) - PROMOTION {{ evaluation.sessionEvaluation.promotion.libelle }}
{{ evaluation.uniteEnseignement.fullLibelle }}

{% if evaluation.sessionEvaluation.travailGroupe %} Travail de groupe{% else %} Travail individuel{% endif %}
{% for etudiant_groupe in evaluation.etudiants %} {{ etudiant_groupe.nomComplet ~ " (" ~ etudiant_groupe.pseudo ~ ")" }}
{% endfor %}

{% if evaluation.verified %}

 Vérifiée le {{ evaluation.verifiedAt|date('d/m/Y H:i') }} par {{ evaluation.verifiedBy.getNomComplet() }}

{% else %}   Corriger cette évaluation
{% endif %}
{# 1 TAB PAR ETUDIANT POUR AVOIR SA PROPRE AUTO-EVAL FACE A L'EVAL DE L'ENSEIGNANT #}
{% for etudiant in evaluation.etudiants %}
{# COMMENTAIRES AUTO-EVAL / EVAL ENSEIGNANT #}
{% set auto_eval = auto_evaluations[etudiant.id] %}
{% if auto_eval %}

Auto-evaluation ( {{ auto_eval.createdBy.nomComplet }} )

{% else %}

pas encore d'auto-évaluation

{% endif %}

Évaluation enseignant ( {{ evaluation.createdBy.nomComplet }} )



{# COMPETENCES + GRAPHIQUE #}
{% for competence_libelle, valeurs in tab_competences %} {% endfor %}
COMPÉTENCES AUTO-EVALUATION EVALUATION
{{ competence_libelle }} {% if auto_eval %}{{ valeurs.auto_eval[etudiant.id] }} %{% endif %} {{ valeurs.eval }} %
Note globale {% if auto_eval %}{{ auto_eval.noteGlobale }}{% endif %} {{ evaluation.noteGlobale }}

Cliquez sur les éléments de la légende pour les cacher/montrer

{% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}