aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/seesomething/around/display_location.html
diff options
context:
space:
mode:
authorMarius Halden <marius.h@lden.org>2017-05-28 21:31:42 +0200
committerMarius Halden <marius.h@lden.org>2017-05-28 21:31:42 +0200
commit987124b09a32248414faf4d0d6615d43b29ac6f6 (patch)
treea549db8af723c981d3b346e855f25d6fd5ff8aa7 /templates/web/seesomething/around/display_location.html
parentdbf56159e44c1560a413022451bf1a1c4cb22a52 (diff)
parenta085b63ce09f87e83b75cda9b9cd08aadfe75d61 (diff)
Merge tag 'v2.0.4' into fiksgatami-dev
Diffstat (limited to 'templates/web/seesomething/around/display_location.html')
-rw-r--r--templates/web/seesomething/around/display_location.html52
1 files changed, 0 insertions, 52 deletions
diff --git a/templates/web/seesomething/around/display_location.html b/templates/web/seesomething/around/display_location.html
deleted file mode 100644
index 7886c3a5d..000000000
--- a/templates/web/seesomething/around/display_location.html
+++ /dev/null
@@ -1,52 +0,0 @@
-[%
-
- url_skip = c.uri_for(
- '/report/new',
- {
- pc => pc
- latitude => latitude,
- longitude => longitude,
- skipped => 1,
- }
- );
-
- PROCESS "maps/${map.type}.html";
- sidebar_html = PROCESS 'report/new/sidebar.html', js = 1, report.used_map = 1;
-
- INCLUDE 'header.html',
- title => loc('Viewing a location')
- bodyclass => 'mappage',
- robots => 'noindex,nofollow';
-
-%]
-
-<form action="[% c.uri_for('/report/new') %]" method="post" name="mapForm" id="mapForm" enctype="multipart/form-data" class="validate" novalidate>
- <input type="hidden" name="token" value="[% csrf_token %]">
- [% IF c.req.params.map_override %]
- <input type="hidden" name="map_override" value="[% c.req.params.map_override | html %]">
- [% END %]
- <input type="hidden" name="pc" value="[% pc | html %]">
-
- <input type="hidden" name="latitude" id="fixmystreet.latitude" value="[% latitude | html %]">
- <input type="hidden" name="longitude" id="fixmystreet.longitude" value="[% longitude | html %]">
-
- [% map_html %]
- </div>
-
- <div id="map_sidebar">
- <div id="side">
- [% INCLUDE 'around/_report_banner.html' %]
- </div>
-
- <div style="display:none" id="side-form">
- [% INCLUDE "report/new/fill_in_details_form.html"
- js = 1,
- report.used_map = 1
- report.name = c.user.name
- %]
- </div>
- </div>
-
-</form>
-
-[% INCLUDE 'footer.html' %]