{% set title = 'Settings' %} {% extends 'layouts/default.html' %} {% block content %} {% for sec in sections %}

{{sec.title}}

{% for op in sec.options %}
{% if op.type == 'checkbox' %}
{% else %}
{{op.title}}
{% endif %}
{% endfor %}
{% endfor %}

Reload Settings

This will reload settings from the configuration file.

{% endblock %}