From 29d6ab2c5f5089f7e3f6c0de67a0212eacbbd068 Mon Sep 17 00:00:00 2001 From: Koch Michael Date: Sun, 1 Jun 2014 22:16:13 +0200 Subject: Show correct Value for 'Traffic left' in Accounts View afaik all the traffic values are in KiB, so the byte-value it has to be multiplied by 1024 for the accounts View to show it correctly --- pyload/web/app/templates/default/accounts/account.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyload/web/app/templates/default/accounts/account.html') diff --git a/pyload/web/app/templates/default/accounts/account.html b/pyload/web/app/templates/default/accounts/account.html index 7039eae8c..65704db10 100644 --- a/pyload/web/app/templates/default/accounts/account.html +++ b/pyload/web/app/templates/default/accounts/account.html @@ -22,7 +22,7 @@
{{_ "Traffic left:"}}
- {{ formatSize trafficleft }} + {{ formatSize trafficleft 0 1024 }}
{{_ "Valid until:"}}
@@ -38,4 +38,4 @@ -
\ No newline at end of file + -- cgit v1.2.3