{% extends "base.html" %} {% block script %} var cset = function(section, option, el) { value = el.value; window.qutesettings.set_javascript(section, option, value); } {% endblock %} {% block style %} table { border: 1px solid grey; border-collapse: collapse; } pre { margin: 2px; } th, td { border: 1px solid grey; padding: 0px 5px; } th { background: lightgrey; } th pre { color: grey; text-align: left; } {% endblock %} {% block content %}

{{ title }}

{% for section in config.DATA %} {% for d, e in config.DATA.get(section).items() %} {% endfor %} {% endfor %}

{{ section }}

{{ config.SECTION_DESC.get(section)|wordwrap(width=120) }}
{{ d }} (Current: {{ e.value()|truncate(100) }})
{% endblock %}