{% extends 'base.html' %} {% block content %} {% if conf_error %}
{{ conf_error }}
{% endif %}
{% for section in sections %}

Configuration Section {{ section }}

{% for confval in config[section] %}
{% if config[section][confval] == "True" %} {% elif config[section][confval] == "False" %} {% else %} {% endif %}
{% endfor %} {% endfor %}
{% endblock %}