Download this file

sidebar_menu.html    49 lines (47 with data), 1.7 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{% set ul_active = [] %}
{% macro sidebar_item(s) -%}
{% if s.url %}
{% if not ul_active[-1] %}
<ul class="sidebarmenu">
{% do ul_active.append(True) %}
{% endif %}
<li{% if request.url.find(s.url,-s.url.__len__()) != -1 %} class="active"{% endif %}>
<a href="{{s.url}}"{% if s.className %} class="{{s.className or ''}}"{% endif %}>{% if s.ui_icon %}<b data-icon="{{s.ui_icon.char}}" class="ico {{s.ui_icon.css}}"></b> {% endif %}<span{% if s.small != None %} class="has_small"{% endif %}>{{h.really_unicode(s.label)}}</span>{% if s.small != None %}<small>{{s.small}}</small>{% endif %}</a>
</li>
{% else %}
{% if ul_active[-1] %}
</ul>
{% do ul_active.append(False) %}
{% endif %}
{% if s.label %}
<h3 class="{{s.className or ''}}">{% if s.ui_icon %}<b data-icon="{{s.ui_icon.char}}" class="ico {{s.ui_icon.css}}"></b>{% endif %}{{s.label}}</h3>
{% endif %}
{% endif %}
{%- endmacro %}
{% if c.custom_sidebar_menu or c.app or (c.project and c.project.sidebar_menu()) or ul_active[-1] %}
<div id="sidebar">
{% if c.custom_sidebar_menu %}
{% for s in c.custom_sidebar_menu %}
{{sidebar_item(s)}}
{% endfor %}
{% endif %}
{% if c.app %}
{% for s in c.app.sidebar_menu() %}
{{sidebar_item(s)}}
{% endfor %}
{% elif c.project %}
{% for s in c.project.sidebar_menu() %}
{{sidebar_item(s)}}
{% endfor %}
{% endif %}
{% if ul_active[-1] %}
</ul>
{% do ul_active.append(False) %}
{% endif %}
{% if c.app and c.app.sidebar_menu_js() %}
<script>
{{c.app.sidebar_menu_js()|safe}}
</script>
{% endif %}
</div>
{% endif %}