summaryrefslogtreecommitdiff
path: root/chimere/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/templates/base.html')
-rw-r--r--chimere/templates/base.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/chimere/templates/base.html b/chimere/templates/base.html
index 30a8660..ce5160b 100644
--- a/chimere/templates/base.html
+++ b/chimere/templates/base.html
@@ -19,10 +19,10 @@
<ul id='action'>
{% for action, subactions in actions %}
<li{% ifequal action.id action_selected.0 %} class='selected'{% endifequal %}>
- <a href='/{{ action.path }}' onclick='saveExtent();'>{{ action.label }}</a>
+ <a href='{{extra_url}}{{ action.path }}' onclick='saveExtent();'>{{ action.label }}</a>
{% ifequal action.id action_selected.0 %}{% if subactions %}<ul>{% for subaction in subactions %}
<li{% ifequal subaction.id action_selected.1 %} class='selected'{% endifequal %}>
- <a href='/{{ subaction.path }}' onclick='saveExtent();'>{{ subaction.label }}</a>
+ <a href='{{extra_url}}{{ subaction.path }}' onclick='saveExtent();'>{{ subaction.label }}</a>
</li>
{% endfor %}</ul>{% endif %}{% endifequal %}
</li>