{% extends base_template %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% 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 %}

{{ 'admin.classe.les_examens_pour_classe'|trans }}: {{ classe.nomFr }}

{# {{ dump(classe) }} #}
{% else %}

Vous avez pas le droit d'accedez à cette page

{% endif %} {% endblock %}