diff options
Diffstat (limited to 'templates/web/seesomething/around/display_location.html')
-rw-r--r-- | templates/web/seesomething/around/display_location.html | 52 |
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' %] |