X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/efa03fba2354096ffd859418d15bbba050bc760d..dc0e5b806a049a1fb43d7a64292f28c8178e4e43:/Resources/views/location/view.html.twig diff --git a/Resources/views/location/view.html.twig b/Resources/views/location/view.html.twig index 6920fee..130d860 100644 --- a/Resources/views/location/view.html.twig +++ b/Resources/views/location/view.html.twig @@ -1,40 +1,45 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
-

{{ section }}

-
- {% if calendar is defined and calendar %} -
- {% for date, day in calendar %} -
-

{{ day.title }}

- {% if day.sessions is not empty %} - - {% else %} -   - {% endif %} -
- {% endfor %} -
- {% endif %} - {{ include('@RapsysAir/form/_toolbox.html.twig') }} -
+
+

{{ section }}

+
+ {% 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 }} + + {% if session.weather is defined and session.weather %}{{ session.weather }}{% endif %} + {{ session.slot }} + +
  • + {% endfor %} +
+ {% else %} +   + {% endif %} +
+ {% endfor %} +
+ {% endif %} + {{ include('@RapsysAir/form/_toolbox.html.twig') }} +
+
{% if locations is defined and locations %} -
-
+
+

{% trans %}Locations{% endtrans %}

+
{% for id, title in locations %}

{{ title }}

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