{% extends 'base.html.twig' %} {% block title %}Hello PagesController!{% endblock %} {% block body %}
{% if not app.user %}

Bonjour utilisateur !

{% elseif app.user %}

Bonjour {{ app.user.nom }} {{ app.user.prenom }} !

Afficher tous les ateliers {% if is_granted('ROLE_INSTRUCTEUR') %} Afficher mes ateliers {% endif %} {% if is_granted('ROLE_APPRENTI') %} Afficher mes formations {% endif %} Déconnexion
{% endif %}
{% endblock %}