1 {% extends '@RapsysAir/body.html.twig' %}
3 <article id="dashboard">
5 <h2><a href="{{ path('rapsys_air_user') }}">{{ section }}</a></h2>
6 <p>{{ description }}</p>
9 {% if users is defined and users %}
10 <div class="grid two">
11 {% for group, list in users %}
12 <article class="cell">
15 {% for id, user in list %}
16 <li><a href="{{ path('rapsys_air_user_view', {'id': id}) }}">{{ user }}</a></li>
21 {#{% for date, day in organizers %}
22 <article class="{{ ['cell', 'seventh']|merge(day.class)|join(' ') }}">
23 <h3>{{ day.title }}</h3>
24 {% if day.sessions is not empty %}
26 {% for session in day.sessions %}
27 <li class="{{ ['session']|merge(session.class)|join(' ') }}">
28 <a href="{{ path('rapsys_air_session_view', {'id': session.id}) }}" title="{{ session.applications|join('\n') }}">{{ session.title }}</a>
30 {% if session.weather is defined and session.weather %}<span title="{{ session.weathertitle }}">{{ session.weather }}</span>{% endif %}
31 <span title="{{ session.slottitle }}">{{ session.slot }}</span>
43 {{ include('@RapsysAir/form/_toolbox.html.twig') }}
46 {{ include('@RapsysAir/default/_location.html.twig') }}