{% extends '@RapsysAir/body.html.twig' %} {% block content %}

{% trans %}Dashboard{% endtrans %}

{% if calendar is defined and calendar %} {% for date, day in calendar %} {% if loop.index % 7 == 0 and not loop.last %} {% endif %} {% endfor %}

{{ day.title }}

{% if day.sessions is not empty %} {% endif %}
{% 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 %}