X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/80faa3fca0310d308f1f4979996e6be667bd8138..9aa1ea280823925216dbfa3d6e9c81865b491ee6:/Resources/views/location/index.html.twig diff --git a/Resources/views/location/index.html.twig b/Resources/views/location/index.html.twig index 5863c76..e309920 100644 --- a/Resources/views/location/index.html.twig +++ b/Resources/views/location/index.html.twig @@ -1,58 +1,68 @@ {% 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) }} +
+
+

{{ description }}

+
+
+ {% if locations is defined and locations %} + {% if multimap is defined and multimap %} + + {% endif %} + {% if forms.locations is defined %} +
+ {% for id, location in locations %} +
+
+

{% if multimap is defined and multimap %}{{ id }} {% endif %}{{ location.title }}

+
+ {% if 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].description) }} + + {{ form_row(forms.locations[id].address) }} -
{{ form_errors(form) }}
+ {{ form_row(forms.locations[id].zipcode) }} -
- {{ form_row(form.location) }} + {{ form_row(forms.locations[id].city) }} - {{ form_row(form.date) }} + {{ form_row(forms.locations[id].latitude) }} - {{ form_row(form.slot) }} -
+ {{ form_row(forms.locations[id].longitude) }} - {{ form_row(form.submit) }} + {{ form_row(forms.locations[id].indoor) }} - {# Render CSRF token etc .#} -
- {{ form_rest(form) }} -
+ {{ form_row(forms.locations[id].hotspot) }} - {{ form_end(form) }} + {{ form_row(forms.locations[id].submit) }} +
+ + {# render csrf token etc .#} +
{{ form_rest(forms.locations[id]) }}
+ {{ form_end(forms.locations[id]) }} + {% endif %} +
+ {% endfor %} +
+ {% else %} +
    + {% for id, location in locations %} +
  • {% if multimap is defined and multimap %}{{ id }} {% endif %}{{ location.title }}
  • + {% endfor %} +
+ {% endif %} + {% endif %} + {{ include('@RapsysAir/form/_toolbox.html.twig') }}
-
- {# dump(calendar) #} -
+ {% endblock %}