seitime-frappe/webnotes/templates/includes/sidebar.html
2014-02-07 19:34:38 +05:30

12 lines
No EOL
293 B
HTML

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