summaryrefslogtreecommitdiffstats
path: root/module/web/templates/default/settings.html
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/templates/default/settings.html')
-rw-r--r--module/web/templates/default/settings.html25
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 %}
+ &nbsp;|</td>
+ <td>
+ {% trans "Valid until:" %}
+ {{ account.validuntil }}
+ &nbsp;|</td>
+ <td>
+ {% trans "Traffic left:" %}
+ {{ account.trafficleft }}
+ &nbsp;|</td>
+ <td>
+ {% trans "Delete? " %}
+ <input id="{{plugin}}|delete;{{account.login}}" name="{{configname}}|{{plugin}}|delete;{{account.login}}" type="checkbox" value="True"/>
+ </td>
</tr>
{% endfor %}