seitime-frappe/frappe/templates/includes/full_index.html
2021-05-27 12:57:55 +05:30

11 lines
285 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>
</li>
{% endfor %}
</ol>
{% endmacro %}
{{ make_item_list(route, full_index) }}