13 lines
327 B
Django/Jinja
13 lines
327 B
Django/Jinja
{% for section in item if section != "name" %}
|
|
[{{ section }}]
|
|
{% for key in item[section] %}
|
|
{% if item[section][key] is not iterable or item[section][key] is string %}
|
|
{{ key }}={{ item[section][key] }}
|
|
{% else %}
|
|
{% for value in item[section][key] %}
|
|
{{ key }}={{ value }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|