{% extends "base.html" %} {% block script %} var win_id = {{ win_id }}; var cset = function(section, option, el) { value = el.value; window.qute.set(win_id, 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: {{ confget(section, d)|truncate(100) }})
{% endblock %}