Add list items.

This commit is contained in:
Jeff Baskin 2016-10-23 20:37:27 -04:00
parent d7a27a99b1
commit 7e9901dc47

View File

@ -23,6 +23,10 @@
{{ entry[0]|indent(indents, True) }}
{{- config_entries(entry[1], indents + 2) -}}
{%- endfor -%}
{%- else -%}
{%- for entry in data -%}
{{- config_entries(entry, indents + 2) -}}
{%- endfor -%}
{%- endif -%}
{%- if indents != 0 -%}
{{ '}'|indent(indents - 2, True) }}{{ '\n' }}