diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-04-17 13:47:45 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-04-17 13:47:45 +0200 |
commit | 542a0a251874f69f9cf2cf9472998dc0a04880c8 (patch) | |
tree | a601e4389820d04285033058685c40ebb01b9828 /settings/templates | |
parent | e984a3b47a539e3df20870b312564f874ebe4d07 (diff) | |
download | nextcloud-server-542a0a251874f69f9cf2cf9472998dc0a04880c8.tar.gz nextcloud-server-542a0a251874f69f9cf2cf9472998dc0a04880c8.zip |
show real data in account information
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/index.php b/settings/templates/index.php index 910437fefc9..f3f0b533a62 100644 --- a/settings/templates/index.php +++ b/settings/templates/index.php @@ -1,8 +1,8 @@ <form id="quota"> <fieldset> <legend>Account information</legend> - <div id="quota_indicator"><div style="width:72%;"> </div></div> - <p>You're currently using 72% (7.2GB) of your 10GB space.</p> + <div id="quota_indicator"><div style="width:<?php echo $_['usage_relative'] ?>%;"> </div></div> + <p>You're currently using <?php echo $_['usage_relative'] ?>% (<?php echo $_['usage'] ?>) of your <?php echo $_['total_space'] ?> space.</p> </fieldset> </form> |