{% extends 'layout/backEndLayout.html.twig' %} {% block title %}Détail du Cours - {{ parent() }}{% endblock %} {% block content %}
{% if is_granted('ROLE_ADMIN') %} Retour à la liste {% endif %}

{{ course.wording }}

  • Coefficient: {{ course.coefficient }}
  • Code: {{ course.code }}
  • Module: {{ course.module.name }}
  • Domaine: {{ course.domain.name }}
{% if is_granted('ROLE_ADMIN') %} {% endif %}
Historique des attributions
{% for attribution in course.attributions|reverse %} {% else %} {% endfor %}
Année scolaire Enseignant Titulaire
{{ attribution.schoolYear }} {{ attribution.teacher }} {{ attribution.headTeacher }}
Aucune attribution trouvée.
{% endblock %}