diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-28 12:26:44 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-28 12:26:44 +0100 |
| commit | 0fcac04804de77f8a9cfb917c127fd3a7818edc0 (patch) | |
| tree | 449993fce875b72942b08c393ce3a97a2d61bf7c /ishtar/templates/base.html | |
| parent | a4f635716015c9f5ed5e6bcd2564da49a2b7f458 (diff) | |
| download | Ishtar-0fcac04804de77f8a9cfb917c127fd3a7818edc0.tar.bz2 Ishtar-0fcac04804de77f8a9cfb917c127fd3a7818edc0.zip | |
jQuery integration - reorganization - presentation work
Diffstat (limited to 'ishtar/templates/base.html')
| -rw-r--r-- | ishtar/templates/base.html | 8 |
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> |
