aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/seesomething/around/display_location.html
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2017-03-31 14:23:02 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2017-03-31 14:23:02 +0100
commited850c6d928acfa6898d67a9220b00ade64b45ea (patch)
tree33e94f379b1c60dcdfe35afe4d5d9f53ac1b591f /templates/web/seesomething/around/display_location.html
parent3d967f09d8171b283c9a90afa6407dc033e4ae42 (diff)
[SeeSomething] Remove cobrand.
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' %]