{% block stylesheets %}{% endblock %}
{% if is_granted(constant('App\\Entity\\User::ROLE_EDUCATEUR')) %} {% include "partial/menu_educateur.html.twig" %} {% elseif is_granted(constant('App\\Entity\\User::ROLE_PARENT')) %} {% include "partial/menu_parent.html.twig" %} {% elseif is_granted(constant('App\\Entity\\User::ROLE_ACHAT_CUISINE')) %} {% include "partial/menu_achat.html.twig" %} {% elseif is_granted(constant('App\\Entity\\User::ROLE_TECHNIQUE')) %} {% include "partial/menu_technique.html.twig" %} {% else %} {% include "partial/menu.html.twig" %} {% endif %}

{% block pageTitle %}{% endblock %}

{% for message in app.flashes('success') %} {% endfor %} {% for message in app.flashes('error') %} {% endfor %} {% block body %}{% endblock %}