diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-02 22:14:08 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-02 22:14:08 +0200 |
commit | 5a679eeada699b74e29bf8947d25ae3e83289180 (patch) | |
tree | 61ee647b97ecf14a7d3516f29962507e70b3a560 /module/web/templates | |
parent | urlencode fix (diff) | |
download | pyload-5a679eeada699b74e29bf8947d25ae3e83289180.tar.xz |
improved accountmanager
Diffstat (limited to 'module/web/templates')
-rw-r--r-- | module/web/templates/default/settings.html | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/module/web/templates/default/settings.html b/module/web/templates/default/settings.html index f1ade3a84..a4d3ceb25 100644 --- a/module/web/templates/default/settings.html +++ b/module/web/templates/default/settings.html @@ -135,11 +135,26 @@ <td> <input id="{{plugin}}|delete;{{account.login}}" name="{{configname}}|{{plugin}}|password;{{account.login}}" type="password" value="{{account.password}}"/> </td> - <td> - {% trans "Delete? " %} - <input id="{{plugin}}|delete;{{account.login}}" name="{{configname}}|{{plugin}}|delete;{{account.login}}" type="checkbox" value="True"/> - - </td> + <td> + {% trans "Status:" %} + {% if account.valid %} + {% trans "valid" %} + {% else %} + {% trans "not valid" %} + {% endif %} + |</td> + <td> + {% trans "Valid until:" %} + {{ account.validuntil }} + |</td> + <td> + {% trans "Traffic left:" %} + {{ account.trafficleft }} + |</td> + <td> + {% trans "Delete? " %} + <input id="{{plugin}}|delete;{{account.login}}" name="{{configname}}|{{plugin}}|delete;{{account.login}}" type="checkbox" value="True"/> + </td> </tr> {% endfor %} |