seitime-frappe/frappe/templates/includes/full_index.html
2015-10-29 11:25:57 +05:30

12 lines
337 B
HTML

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