diff options
Diffstat (limited to 'ishtar/templates/base.html')
| -rw-r--r-- | ishtar/templates/base.html | 12 |
1 files changed, 11 insertions, 1 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 %} |
