diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-06-11 16:05:02 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-06-12 18:18:44 +0200 |
commit | 33afa9a2537669160cb71bf81c2f299519965400 (patch) | |
tree | fbcecccb6065b8ab8d93396b1cd2b10ac44339ca /settings | |
parent | 2d5f97ef2e6dffad00cfb41ecd15ce6a8e554020 (diff) | |
download | nextcloud-server-33afa9a2537669160cb71bf81c2f299519965400.tar.gz nextcloud-server-33afa9a2537669160cb71bf81c2f299519965400.zip |
move storage bar below clients showcase to make it more visible
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/personal.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 3c7179d6e6a..4a046973307 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -4,12 +4,6 @@ * See the COPYING-README file. */?> -<div id="quota" class="personalblock"><div style="width:<?php p($_['usage_relative']);?>%;"> - <p id="quotatext"><?php print_unescaped($l->t('You have used <strong>%s</strong> of the available <strong>%s</strong>', - array($_['usage'], $_['total_space'])));?></p> -</div></div> - - <div class="clientsbox"> <h2><?php p($l->t('Get the apps to sync your files'));?></h2> @@ -28,6 +22,15 @@ </div> +<div id="quota" class="personalblock"> + <div style="width:<?php p($_['usage_relative']);?>%;"> + <p id="quotatext"> + <?php print_unescaped($l->t('You have used <strong>%s</strong> of the available <strong>%s</strong>', + array($_['usage'], $_['total_space'])));?> + </p> + </div> +</div> + <?php if($_['passwordChangeSupported']) { |