Georg Pfuetzenreuter
4267fd2482
Allow management of general configuration using pillar data. Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
7 lines
177 B
Django/Jinja
7 lines
177 B
Django/Jinja
{%- for category, config in nsd.get('config_data').items() %}
|
|
{{ category }}:
|
|
{%- for option, value in config.items() %}
|
|
{{ option }}: {{ value }}
|
|
{%- endfor %}
|
|
{%- endfor %}
|