summaryrefslogtreecommitdiff
path: root/templates/includes/map_sidebar_template.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2011-01-20 18:56:55 -0500
committerluxagraf <sng@luxagraf.net>2011-01-20 18:56:55 -0500
commit294820d74fbfa6f54d689084d4fd689a2ad8a1e9 (patch)
treea3a163217cf09d277f9451ac9e635d8b787f9594 /templates/includes/map_sidebar_template.html
parent6dca31fffb9dd52014a85e01c30a142b933d86ef (diff)
moved template build files to bin folder and updated file paths throughout apps
Diffstat (limited to 'templates/includes/map_sidebar_template.html')
-rw-r--r--templates/includes/map_sidebar_template.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/includes/map_sidebar_template.html b/templates/includes/map_sidebar_template.html
deleted file mode 100644
index 18dd118..0000000
--- a/templates/includes/map_sidebar_template.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% load truncateletters %}
-{% load slugify_under %}
-<div class="map-legend">
- <h4>Trips</h4>
- <ul>
- {% for route in route_list %}
- <li><a onclick="showRoute('{{route.template_var_name}}', {{route.zoom}}, '{{route.geometry.centroid.y}}','{{route.geometry.centroid.x}}');" href="#">{{route.name}}</a></li>
- {% endfor %}
- </ul>
- <h4>Regions</h4>
- <ul>
- {%for region in region_list %}
- <li><a href="#{{region.slug}}" onclick="focusCountry({{region.lat}}, {{region.lon}}, {{region.zoom_level}});" title="See all writing from {{region.name|title}}">{{region.name}}</a></li>
- {% endfor %}
- </ul>
-
- <h4>Countries</h4>
- <ul>
- <li><a onclick="focusCountry(19.311143,2.460938,2);" href="#">All</a></li>
- {%for country in country_list %}
- <li><a href="#{{country.slug}}" onclick="focusCountry({{country.lat}}, {{country.lon}}, {{country.zoom_level}});" title="See all writing from {{country.name|title}}">{{country.name}}</a></li>
- {% endfor %}
- </ul>
-
-</div> \ No newline at end of file