seitime-frappe/webnotes/templates/includes/sidebar.html
2014-02-03 11:35:18 +05:30

12 lines
No EOL
272 B
HTML

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