X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/dddeaedb2eb31bef0f115116eadec65536d2c028..2ef0c16b8202ff4e360b7dc31fc3e24336303bd5:/Resources/views/location/index.html.twig diff --git a/Resources/views/location/index.html.twig b/Resources/views/location/index.html.twig index 5863c76..817fa39 100644 --- a/Resources/views/location/index.html.twig +++ b/Resources/views/location/index.html.twig @@ -1,58 +1,45 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
-TODO: -

{% 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 %} -
- {{ form_start(form) }} - -
{{ form_errors(form) }}
- -
- {{ form_row(form.location) }} - - {{ form_row(form.date) }} - - {{ form_row(form.slot) }} -
- - {{ form_row(form.submit) }} - - {# Render CSRF token etc .#} -
- {{ form_rest(form) }} -
- - {{ form_end(form) }} +
+
+

{% trans %}Locations{% endtrans %}

+

{% trans %}Libre Air location list{% endtrans %}

+
+
+
+ {% for id, title in locations %} +
+

{{ title }}

+ {% if forms.locations is defined and forms.locations[id] is defined and forms.locations[id] %} + {{ form_start(forms.locations[id]) }} +
+ {{ form_row(forms.locations[id].title) }} + + {{ form_row(forms.locations[id].short) }} + + {{ form_row(forms.locations[id].address) }} + + {{ form_row(forms.locations[id].zipcode) }} + + {{ form_row(forms.locations[id].city) }} + + {{ form_row(forms.locations[id].latitude) }} + + {{ form_row(forms.locations[id].longitude) }} + + {{ form_row(forms.locations[id].hotspot) }} + + {{ form_row(forms.locations[id].submit) }} +
+ + {# render csrf token etc .#} + + {{ form_end(forms.locations[id]) }} + {% endif %} +
+ {% endfor %} +
+ {{ include('@RapsysAir/form/_toolbox.html.twig') }}
-
- {# dump(calendar) #} -
+ {% endblock %}