X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/9428d34e0422a8e781d6d7a03e6b5f73249efa4c..ef49abcc849c59b6d81fdf2faff094c8d28ad345:/Resources/views/location/index.html.twig?ds=sidebyside diff --git a/Resources/views/location/index.html.twig b/Resources/views/location/index.html.twig index ca51431..817fa39 100644 --- a/Resources/views/location/index.html.twig +++ b/Resources/views/location/index.html.twig @@ -1,45 +1,45 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
-

{% 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 %} - {# Display application or login form #} - {% if is_granted('ROLE_GUEST') %} -
- {{ include('@RapsysAir/form/_application.html.twig') }} -
- {% elseif not is_granted('IS_AUTHENTICATED_REMEMBERED') %} -
- {{ include('@RapsysAir/form/_login.html.twig') }} -
- {% endif %} -
- {# dump(calendar) #} -
+
+
+

{% 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') }} +
+
{% endblock %}