seitime-frappe/frappe/templates/includes/full_index.html
2016-06-23 18:22:03 +05:30

14 lines
397 B
HTML

{% macro make_item_list(route, children_map) %}
<ol>
{% for item in children_map[route] %}
<li>
<a href="{{ url_prefix }}{{ item.route }}">{{ item.title }}</a>
{% if children_map[item.route] %}
{{ make_item_list(item.route, children_map) }}
{% endif %}
</li>
{% endfor %}
</ol>
{% endmacro %}
{{ make_item_list(route, full_index) }}