summaryrefslogtreecommitdiffstats
path: root/module/web/templates
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-01 11:50:28 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-01 11:50:28 +0200
commit3992d16e9dbfc5f0a4196c0958b14c1fe8576ecb (patch)
tree0bbdd988d71b98b3b7e29d0626e8c2abdbd22b7c /module/web/templates
parentsome changes (diff)
downloadpyload-3992d16e9dbfc5f0a4196c0958b14c1fe8576ecb.tar.xz
webif config fix
Diffstat (limited to 'module/web/templates')
-rw-r--r--module/web/templates/default/settings.html17
1 files changed, 11 insertions, 6 deletions
diff --git a/module/web/templates/default/settings.html b/module/web/templates/default/settings.html
index b0260cec5..36563b086 100644
--- a/module/web/templates/default/settings.html
+++ b/module/web/templates/default/settings.html
@@ -33,15 +33,17 @@
<form id="horizontalForm" action="" method="POST">
- {% for skey, section in conf.items %}
+ {% for skey, section in conf.iteritems %}
- <h2>{{section.name}}</h2>
-
- {% for okey, option in section.options.items %}
+ <h2>{{section.desc}}</h2>
+
+ {% for okey, option in section.items %}
+ {% ifnotequal okey "desc" %}
+
<label for="{{skey}}|{{okey}}" style="color:#424242;">
- {{option.name}}
- {% ifequal option.type "bool" %}
+ {{option.desc}}
+ {% ifequal option.typ "bool" %}
<select id="{{skey}}|{{okey}}" name="{{skey}}|{{okey}}">
<option {% if option.value %} selected="selected" {% endif %}value="True">{% trans "on" %}</option>
<option {% if not option.value %} selected="selected" {% endif %}value="False">{% trans "off" %}</option>
@@ -58,6 +60,9 @@
{% endif %}
{% endifequal %}
</label>
+
+ {% endifnotequal %}
+
{% endfor %}
<br /><br /><br /><br />
{% endfor %}