From: Raphaƫl Gertz Date: Sun, 29 Nov 2020 06:50:21 +0000 (+0100) Subject: Switch to tableless X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/923da43bf3ea26b8b79737425edd1fcdebb5e184 Switch to tableless --- diff --git a/Resources/views/session/index.html.twig b/Resources/views/session/index.html.twig index 58b5cb5..716eb99 100644 --- a/Resources/views/session/index.html.twig +++ b/Resources/views/session/index.html.twig @@ -1,52 +1,40 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
+

{{ section }}

-
+
{% 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 %} -
+
+ {% for date, day in calendar %} +
+

{{ day.title }}

+ {% if day.sessions is not empty %} + + {% else %} +   + {% endif %} +
+ {% endfor %} +
{% endif %} {{ include('@RapsysAir/form/_toolbox.html.twig') }} -
-
- {% if locations is defined and locations %} - - - - {% for id, title in locations %} - - {% if loop.index % 7 == 0 and not loop.last %} - - - {% endif %} - {% endfor %} - - -
{{ title }}
- {% endif %} -
+ + {% if locations is defined and locations %} +
+
+ {% for id, title in locations %} +
+

{{ title }}

+
+ {% endfor %} +
+
+ {% endif %}
{% endblock %}