{% extends base_template %}
{% block show %}
{% set exist = false %}
{% if app.user and is_granted('ROLE_ENSEIGNANT') %}
{% for enseignantClasses in app.user.enseignantClasses %}
{% if (enseignantClasses.classe.id == classe.id) %}
{% set exist = true %}
{% endif %}
{% endfor %}
{% endif %}
{% if app.user and is_granted('ROLE_ELEVE') %}
{% for eleve in app.user.eleveAnneeScolaires %}
{% if (eleve.classe.id == classe.id) %}
{% set exist = true %}
{% endif %}
{% endfor %}
{% endif %}
{% if app.user and is_granted('ROLE_ADMIN') %}
{% set exist = true %}
{% endif %}
{% if app.user and is_granted('ROLE_PARENT') %}
{% set exist = true %}
{% endif %}
{% if exist %}
{% else %}
{% endif %}
{{ 'admin.classe.Emploi_du_temps'|trans }}
{% if classe.nomFr is defined %}
{{ classe.nomFr }} {% endif %}
{{ 'AnneeScolaire'|trans }}
{% if classe.anneeScolaire is defined %}
{{ classe.anneeScolaire.nom }} {% endif %}