seitime-frappe/frappe/templates/includes/full_index.html
2015-03-23 18:40:08 +05:30

12 lines
321 B
HTML

{% macro make_item_list(item_list) %}
<ol>
{% for item in item_list %}
<li>
<a href="{{ item.url }}">{{ item.title }}</a>
{% if item.children %}{{ make_item_list(item.children) }}{% endif %}
</li>
{% endfor %}
</ol>
{% endmacro %}
{{ make_item_list(full_index) }}