X-Git-Url: https://git.rapsys.eu/.gitweb.cgi/airbundle/blobdiff_plain/a98b3e9f009549315bd0633af00c5faffa1bfb1f..5d7fa54b439904cfb79ac1fe4b81ab7f53433874:/Resources/views/location/index.html.twig diff --git a/Resources/views/location/index.html.twig b/Resources/views/location/index.html.twig new file mode 100644 index 0000000..817fa39 --- /dev/null +++ b/Resources/views/location/index.html.twig @@ -0,0 +1,45 @@ +{% extends '@RapsysAir/body.html.twig' %} +{% block content %} +
+
+

{% 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 %}