From cedfbc8ca16a4f49cae06089d5b50e8ca156f1d6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 24 Feb 2021 01:45:52 +0100 Subject: [PATCH] Add location add and index templates --- Resources/views/location/add.html.twig | 30 ++++++++++++++++ Resources/views/location/index.html.twig | 45 ++++++++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 Resources/views/location/add.html.twig create mode 100644 Resources/views/location/index.html.twig diff --git a/Resources/views/location/add.html.twig b/Resources/views/location/add.html.twig new file mode 100644 index 0000000..d0c18e8 --- /dev/null +++ b/Resources/views/location/add.html.twig @@ -0,0 +1,30 @@ +{% extends '@RapsysAir/body.html.twig' %} +{% block content %} +
+

{{ section }}

+ {{ form_start(form) }} +
+ {{ form_row(form.title) }} + + {{ form_row(form.short) }} + + {{ form_row(form.address) }} + + {{ form_row(form.zipcode) }} + + {{ form_row(form.city) }} + + {{ form_row(form.latitude) }} + + {{ form_row(form.longitude) }} + + {{ form_row(form.hotspot) }} + + {{ form_row(form.submit) }} +
+ + {# render csrf token etc .#} +
{{ form_rest(form) }}
+ {{ form_end(form) }} +
+{% endblock %} 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 %} -- 2.41.0