diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-06-24 19:07:03 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-06-28 20:07:14 +0200 |
commit | d2e9f837f36402b46d4c81dfd9fc36ee6fdd1226 (patch) | |
tree | d89262c240f08332c94eb96672de409f141157dc /module/web/templates/default | |
parent | [Setup] Ask for alphanumeric password with min 8 chars + remote access disabl... (diff) | |
download | pyload-d2e9f837f36402b46d4c81dfd9fc36ee6fdd1226.tar.xz |
Fix account representation in web interface (by wurfkeks)
Diffstat (limited to 'module/web/templates/default')
-rw-r--r-- | module/web/templates/default/settings.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/web/templates/default/settings.html b/module/web/templates/default/settings.html index da0b535ac..257923cb0 100644 --- a/module/web/templates/default/settings.html +++ b/module/web/templates/default/settings.html @@ -113,7 +113,7 @@ <td> <input id="{{plugin}}|password;{{account.login}}" name="{{plugin}}|password;{{account.login}}" - type="password" value="{{account.password}}" size="12"/> + type="password" size="12"/> </td> <td> {% if account.valid %} @@ -148,12 +148,12 @@ <td> <input id="{{plugin}}|time;{{account.login}}" name="{{plugin}}|time;{{account.login}}" type="text" - size="7" value="{{account.time}}"/> + size="7" value="{{account.options['time']}}"/> </td> <td> <input id="{{plugin}}|limitdl;{{account.login}}" name="{{plugin}}|limitdl;{{account.login}}" type="text" - size="2" value="{{account.limitdl}}"/> + size="2" value="{{account.options['limitdl']}}"/> </td> <td> <input id="{{plugin}}|delete;{{account.login}}" |