summaryrefslogtreecommitdiff
path: root/chimere/templates/base.html
diff options
context:
space:
mode:
authoretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2010-03-07 17:20:04 +0000
committeretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2010-03-07 17:20:04 +0000
commit7dbdebc6d28415e0d735fdd235909666f125ad4b (patch)
treed4a6fa8920e652e41d42fce1936438f16ee9f66a /chimere/templates/base.html
parent7f7c333f114eee34dd089543e84028eb18f448c4 (diff)
downloadChimère-7dbdebc6d28415e0d735fdd235909666f125ad4b.tar.bz2
Chimère-7dbdebc6d28415e0d735fdd235909666f125ad4b.zip
Dynamic management of area with URLs - #84
git-svn-id: http://www.peacefrogs.net/svn/chimere/trunk@69 9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864
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>