diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-06-12 09:02:16 -0700 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-06-12 09:02:16 -0700 |
commit | 06808eddf3c29f7324eba6b48601cfd2437d1c6d (patch) | |
tree | 356a07958f48aafd996611b5851c7a941413207c /settings | |
parent | d2d71c8797f7e7b51e55bec4217738faaf6a08ca (diff) | |
parent | b014509f4132ce7c978b6edc595a03ab432eda3b (diff) | |
download | nextcloud-server-06808eddf3c29f7324eba6b48601cfd2437d1c6d.tar.gz nextcloud-server-06808eddf3c29f7324eba6b48601cfd2437d1c6d.zip |
Merge pull request #3676 from owncloud/move-storage-bar
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 f0002c505c8..b11f1912f51 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']) { |