From: Raphaƫl Gertz <git@rapsys.eu> Date: Tue, 4 Oct 2022 05:23:15 +0000 (+0200) Subject: Remove unused template X-Git-Tag: 0.3.0~240 X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/31682ef9f96688a69ab3a2e3146dca069ac99d10 Remove unused template --- diff --git a/Resources/views/location/add.html.twig b/Resources/views/location/add.html.twig deleted file mode 100644 index f774e84..0000000 --- a/Resources/views/location/add.html.twig +++ /dev/null @@ -1,32 +0,0 @@ -{% extends '@RapsysAir/body.html.twig' %} -{% block content %} - <section id="form"> - <h2>{{ section }}</h2> - {{ form_start(form) }} - <div> - {{ form_row(form.title) }} - - {{ form_row(form.description) }} - - {{ form_row(form.address) }} - - {{ form_row(form.zipcode) }} - - {{ form_row(form.city) }} - - {{ form_row(form.latitude) }} - - {{ form_row(form.longitude) }} - - {{ form_row(form.indoor) }} - - {{ form_row(form.hotspot) }} - - {{ form_row(form.submit) }} - </div> - - {# render csrf token etc .#} - <footer style="display:none">{{ form_rest(form) }}</footer> - {{ form_end(form) }} - </section> -{% endblock %}