diff options
Diffstat (limited to 'ishtar/templates')
| -rw-r--r-- | ishtar/templates/base.html | 12 | ||||
| -rw-r--r-- | ishtar/templates/registration/logout.html | 2 |
2 files changed, 12 insertions, 2 deletions
diff --git a/ishtar/templates/base.html b/ishtar/templates/base.html index e26a5ddab..ff9744391 100644 --- a/ishtar/templates/base.html +++ b/ishtar/templates/base.html @@ -29,7 +29,17 @@ {% block context %}{% endblock %} </div> <div id="main_menu"> - {% block menu %}{% endblock %} + <ul> + {% for section in MENU.childs %} + <li>{{section.label}} + <ul> + {% for menu_item in section.childs %} + <li><a href='{% url action menu_item.idx%}'>{{menu_item.label}}</a></li> + {% endfor %} + </ul> + </li> + {% endfor %} + </ul> </div> <div id="content"> {% block content %}{% endblock %} diff --git a/ishtar/templates/registration/logout.html b/ishtar/templates/registration/logout.html index 399d8c343..029a0c25b 100644 --- a/ishtar/templates/registration/logout.html +++ b/ishtar/templates/registration/logout.html @@ -2,7 +2,7 @@ {% load i18n %} {% block content %} -<div class='form'> +<div class='info'> <p>{% trans "Logged out" %}</p> </div> {% endblock %} |
