summaryrefslogtreecommitdiff
path: root/ishtar/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/templates/base.html')
-rw-r--r--ishtar/templates/base.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/ishtar/templates/base.html b/ishtar/templates/base.html
index ff9744391..1433d932d 100644
--- a/ishtar/templates/base.html
+++ b/ishtar/templates/base.html
@@ -4,10 +4,12 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
- <link rel="stylesheet" href="{{MEDIA_URL}}/style.css" />
- <link rel="shortcut icon" href="{{MEDIA_URL}}/images/favicon.png">
+ <link rel="stylesheet" href="{{MEDIA_URL}}/media/style.css" />
+ <link rel="shortcut icon" href="{{MEDIA_URL}}/media/images/favicon.png">
<title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %}
</title>
+ <script language="javascript" type="text/javascript" src="{{JQUERY_URL}}"></script>
+ <script language="javascript" type="text/javascript" src="{{MEDIA_URL}}/js/ishtar.js"></script>
</head>
<body>
@@ -34,7 +36,7 @@
<li>{{section.label}}
<ul>
{% for menu_item in section.childs %}
- <li><a href='{% url action menu_item.idx%}'>{{menu_item.label}}</a></li>
+ <li{%ifequal menu_item.idx current_action%} class='selected'{%endifequal%}><a href='{% url action menu_item.idx%}'>{{menu_item.label}}</a></li>
{% endfor %}
</ul>
</li>