{% do ul_active.append(False) %}
{% endif %}
{% if s.label %}
{% if s.ui_icon %}{% endif %}{{s.label}}
{% endif %}
{% endif %}
{%- endmacro %}
{% if c.custom_sidebar_menu or c.app or (c.project and c.project.sidebar_menu()) or ul_active[-1] %}
{% 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] %}
{% do ul_active.append(False) %}
{% endif %}
{% if c.app and c.app.sidebar_menu_js() %}
{% endif %}