seitime-frappe/webnotes/templates/includes/sidebar.html
2014-02-13 00:52:40 +05:30

12 lines
No EOL
335 B
HTML

{% if children -%}
{%- for child in children -%}
<div class="sidebar-item">
<a href="{{ child.name }}" class="no-decoration {% if child.name == pathname %}active{% endif %}">
{{ child.page_title }}
{% if not child.public_read %}
(<i class="icon-fixed-width icon-lock"></i>)
{% endif %}
</a>
</div>
{%- endfor -%}
{%- endif %}