{% 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 == homework.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 == homework.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_SUPER_ADMIN') %} {% set exist = true %} {% endif %} {% if exist %}

{{ "admin.cours.exmaison"|trans }}

  {{ "admin.cours.detailex"|trans }}

{{ "admin.cours.titre"|trans }} : {{ homework.subject }}

{% if homework.datelimit %}

( {{ "admin.cours.datel"|trans }} : {{ homework.datelimit|date('d/m/Y') }} )

{% endif %}

{{ "admin.cours.description"|trans }} :

{{ homework.description|raw }}

{% if homework.doc %}

{{ "admin.cours.telecharger"|trans }} : {{ homework.doc }} {% else %}
{{ "admin.cours.nodoc"|trans }} {% endif %}

   Document

{% if (homework.doc and (homework.doc|split('.')|last == "pdf")) %}
{% endif %} {% if (homework.doc and (homework.doc|split('.')|last == "xls")) %}
{% endif %} {% if (homework.doc and (homework.doc|split('.')|last == "xlsx")) %}
{% endif %} {% if (homework.doc and ((homework.doc|split('.')|last == "doc") or (homework.doc|split('.')|last == "docx"))) %}
{% endif %}
{% else %}

Vous avez pas le droit d'accedez à cet exercice

{% endif %} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}