{% block stylesheets %}
{% endblock %}
{% if is_granted('IS_AUTHENTICATED_FULLY') %} {% for p in app.user.professeurs %}
Bonjour
{{ app.user.email }}
Professeur
{% endfor %} {% for p in app.user.eleves %}
Bonjour
{{ app.user.email }}
Eleve
{% endfor %} {% for p in app.user.responsables %}
Bonjour
{{ app.user.email }}
Responsable
{% endfor %} {% if app.user.email == "admin@admin.com" %} Bonjour admin {% endif %} {% endif %}
{% if is_granted('IS_AUTHENTICATED_FULLY') %}
Déconnexion
{% else %}
Inscription
Connexion
{% endif %}
Accueil
{% if is_granted('IS_AUTHENTICATED_FULLY')%} {% if app.user.email == "admin@admin.com" %}
Les responsables
Lister
Ajouter
{% endif %} {% endif %}
Les professeurs
Lister
{% if is_granted('IS_AUTHENTICATED_FULLY')%} {% if app.user.email == "admin@admin.com" %}
Ajouter
{% endif %} {% endif %}
{% if is_granted('IS_AUTHENTICATED_FULLY')%} {% if app.user.email == "admin@admin.com" %}
Les élèves
Lister
Ajouter
{% endif %} {% endif %}
{% block contenu %}{% endblock %}
{% block javascripts %} {% endblock %}