diff options
author | Josh Angell <josh@supercooldesign.co.uk> | 2012-02-23 11:24:43 +0000 |
---|---|---|
committer | Josh Angell <josh@supercooldesign.co.uk> | 2012-02-23 11:24:43 +0000 |
commit | a20baf15cabeaf50b6d9e5632e59cd44f18976bc (patch) | |
tree | b8b2033a75d632647865522f7a2fee9a04b4620b | |
parent | 3f3ec1e1d2dc18b94248121d4f7d4e2b39718978 (diff) |
Fix auto update of around view byte adding in the right ids again
Signed-off-by: Josh Angell <josh@supercooldesign.co.uk>
-rwxr-xr-x | templates/web/fixmystreet/around/display_location.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/web/fixmystreet/around/display_location.html b/templates/web/fixmystreet/around/display_location.html index 8f3ebb49b..caa56ae57 100755 --- a/templates/web/fixmystreet/around/display_location.html +++ b/templates/web/fixmystreet/around/display_location.html @@ -97,16 +97,16 @@ <section class="full-width"> <menu id="problems-nav" class="tab-nav"> <ul> - <li><a href="#problems-on-the-map">[% loc('Problems on the map') %]</a></li> - <li><a href="#problems-nearby">[% loc( 'Problems nearby' ) %]</a></li> + <li><a href="#current">[% loc('Problems on the map') %]</a></li> + <li><a href="#current_near">[% loc( 'Problems nearby' ) %]</a></li> </ul> </menu> - <ul id="problems-on-the-map" class="issue-list-a tab"> + <ul id="current" class="issue-list-a tab"> [% INCLUDE "around/on_map_list_items.html" %] </ul> - <ul id="problems-nearby" class="issue-list-a tab"> + <ul id="current_near" class="issue-list-a tab"> [% INCLUDE "around/around_map_list_items.html" %] </ul> </section> |