summaryrefslogtreecommitdiff
path: root/templates/main_map.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/main_map.html')
-rw-r--r--templates/main_map.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/main_map.html b/templates/main_map.html
index 4d4f94d..117451a 100644
--- a/templates/main_map.html
+++ b/templates/main_map.html
@@ -3,6 +3,7 @@
{% block message_edit %}{% endblock %}
{% block sidebar %}{{ block.super }}
<div id='panel'>
+<h2>{% trans "Topics"%}</h2>
<form method='post' name='frm_categories' id='frm_categories'>
<ul id='categories'>{% for category, lst_sub_categories in sub_categories %}
<script language='javascript'><!--
@@ -27,6 +28,7 @@ lst_{{category.id}}.push("{{sub_category.id}}");{% endfor %}
</form>
</div>
{%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}}, {{area.upper_left_corner.y}}, {{area.lower_right_corner.x}}, {{area.lower_right_corner.y}})'/> {{area.name}}</li>{%endfor%}
</ul>