{% extends "base.html" %} {% block script %} var cset = function(section, option, el) { value = el.value; window.qute.set(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; } .noscript, .noscript-text { color:red; } .noscript-text { margin-bottom: 5cm; } .option_description { margin: .5ex 0; color: grey; font-size: 80%; font-style: italic; white-space: pre-line; } {% 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) }}) {% if config.DATA.get(section).descriptions[d] %}

{{ config.DATA.get(section).descriptions[d]|e }}

{% endif %}
{% endblock %}