{% extends '@RapsysAir/body.html.twig' %} {% block content %} {% trans %}Dashboard{% endtrans %} {% if calendar is defined and calendar %} {% for date, day in calendar %} {{ day.title }} {% if day.sessions is not empty %} {% for session in day.sessions %} {{ session.title }} {% endfor %} {% endif %} {% if loop.index % 7 == 0 and not loop.last %} {% endif %} {% endfor %} {% endif %} {# Display application or login form #} {% if is_granted('ROLE_GUEST') %} {{ include('@RapsysAir/form/_application.html.twig') }} {% elseif not is_granted('IS_AUTHENTICATED_REMEMBERED') %} {{ include('@RapsysAir/form/_login.html.twig') }} {% endif %} {# dump(calendar) #} {% endblock %}