summaryrefslogtreecommitdiff
path: root/chimere/templates/main_map.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2012-02-15 19:57:33 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2012-02-15 19:57:33 +0100
commit053c3a9a421a980a2af2f8e60df2d0c106b959e7 (patch)
tree7eafee9ba4a8db2c5e470f599939cab18f4c22d7 /chimere/templates/main_map.html
parentfbfae775970eb0b29c3ac3f79d5bcd7c9acb12fb (diff)
downloadChimère-053c3a9a421a980a2af2f8e60df2d0c106b959e7.tar.bz2
Chimère-053c3a9a421a980a2af2f8e60df2d0c106b959e7.zip
Use staticfiles (refs #315)
Diffstat (limited to 'chimere/templates/main_map.html')
-rw-r--r--chimere/templates/main_map.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/chimere/templates/main_map.html b/chimere/templates/main_map.html
index 8b8cc2e..b426c25 100644
--- a/chimere/templates/main_map.html
+++ b/chimere/templates/main_map.html
@@ -15,7 +15,7 @@
{%if areas%}<div id='areas'>
<h2>{% trans "Shortcuts"%}</h2>
<ul>{% for area in areas%}
-<li><img class='zoom_image' alt='{% trans "Zoom to" %} {{area.name}}' src='{{media_path}}icons/zoom.png' onclick='zoomToArea({{area.upper_left_corner.x|unlocalize_point}}, {{area.upper_left_corner.y|unlocalize_point}}, {{area.lower_right_corner.x|unlocalize_point}}, {{area.lower_right_corner.y|unlocalize_point}}); loadGeoObjects();'/> {{area.name}}</li>{%endfor%}
+<li><img class='zoom_image' alt='{% trans "Zoom to" %} {{area.name}}' src='{{STATIC_URL}}icons/zoom.png' onclick='zoomToArea({{area.upper_left_corner.x|unlocalize_point}}, {{area.upper_left_corner.y|unlocalize_point}}, {{area.lower_right_corner.x|unlocalize_point}}, {{area.lower_right_corner.y|unlocalize_point}}); loadGeoObjects();'/> {{area.name}}</li>{%endfor%}
</ul>
</div>{%endif%}