{% extends "partials/base.html" %} {% block title %}Settings{% endblock %} {% set active_page = "settings" %} {% block content %}
{% for section, settings in config.to_dict().items() %}

[{{ section }}]

{% for key, value in settings.items() %}
{% if value is string or value is none %} {% elif value|is_list %} {% elif value|is_dict %} {% elif value is integer %} {% elif value is boolean %} {% endif %}
{% endfor %} {% endfor %}
{% endblock %}