{# Recursive field dispatch — expects: f (EditorFieldSchema), buffer (EditBuffer) #} {% if f.type_tag == 'scalar' %} {% include "components/config/scalar.html" %} {% elif f.type_tag == 'nested' %} {% include "components/config/nested.html" %} {% elif f.type_tag == 'list_str' %} {% include "components/config/list_str.html" %} {% elif f.type_tag == 'tagged_union_list' %} {% include "components/config/tagged_union_list.html" %} {% elif f.type_tag == 'dict_str_str' %} {% include "components/config/dict_str_str.html" %} {% elif f.type_tag == 'keyed_collection' %} {% include "components/config/keyed_collection.html" %} {% else %}
{{ f.path }}
{{ f.doc }} (unsupported type: {{ f.type_tag }})
{% endif %}