X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/7a56f5fca86c3f68343df9ed21b3e0388e59702b..04707785a279059e57bafb67a5871a0918468929:/Resources/views/default/index.html.twig diff --git a/Resources/views/default/index.html.twig b/Resources/views/default/index.html.twig index 9ce4b11..beb1508 100644 --- a/Resources/views/default/index.html.twig +++ b/Resources/views/default/index.html.twig @@ -1,7 +1,45 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} - <section id="content"> - <h2><a href="{{ path('rapsys_air_index') }}">{{ section }}</a></h2> - <p>{{ 'Welcome to the outdoor space reservation system'|trans }}</p> - </section> + <article id="dashboard"> + <header> + <h2><a href="{{ path('rapsys_air') }}">{{ title }}</a></h2> + <p>{{ description }}</p> + </header> + <div class="panel"> + {% if calendar is defined and calendar %} + <div class="grid calendar seven"> + {% for date, day in calendar %} + <article class="{{ day.class|join(' ') }}"> + <h3>{{ day.title }}</h3> + {% if day.sessions is not empty %} + <ul> + {% for session in day.sessions %} + <li class="{{ session.class|join(' ') }}"> + <a href="{{ session.link }}" title="{{ session.applications|join('\n') }}"> + <span>{{ session.start|intldate('none', 'short') }}</span> + <span class="reducible">{{ session.location }}</span> + <span class="info"> + {% if session.weather is defined and session.weather %} + <span title="{{ session.weathertitle }}">{{ session.weather }}</span> + {% endif %} + <span title="{{ session.slottitle }}">{{ session.slot }}</span> + </span> + <span>{{ session.stop|intldate('none', 'short') }}</span> + {% if session.pseudonym is defined and session.pseudonym %} + <span class="reducible{% if session.rate is not defined and session.hat is not defined %} pseudonym{% endif %}">{{ session.pseudonym }}</span> + {% endif %} + {% if session.rate is defined %}<span class="info">{{ session.rate }} {% if session.hat is defined and session.hat %}ð©{% else %}â¬{% endif %}</span>{% endif %} + </a> + </li> + {% endfor %} + </ul> + {% endif %} + </article> + {% endfor %} + </div> + {% endif %} + {{ include('@RapsysAir/form/_toolbox.html.twig') }} + </div> + </article> + {{ include('@RapsysAir/default/_location.html.twig') }} {% endblock %}