{% macro options(items, prefix) %}
{% import _self as form %}
{% for item in items %}
<option value="{{ item.url }}">{{ prefix }} {{ item.title }}</option>
{{ item.below ? form.options(item.below, prefix ~ '--') }}
{% endfor %}
{% endmacro %}
/* No context defined. */
No notes defined.