diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-10-21 12:52:03 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-10-21 12:52:03 +0200 |
commit | 232742a5e6c2912fe53249465d5fe31ef3b9722f (patch) | |
tree | 00251102c2ce4853259bbcd9a26daadd1564d096 /view | |
parent | a33ddf373bc8a83ec7d440b46710642e26171800 (diff) | |
download | volse-hubzilla-232742a5e6c2912fe53249465d5fe31ef3b9722f.tar.gz volse-hubzilla-232742a5e6c2912fe53249465d5fe31ef3b9722f.tar.bz2 volse-hubzilla-232742a5e6c2912fe53249465d5fe31ef3b9722f.zip |
warn if quota exceeds 90% of storage limit
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/cloud_actionspanel.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/cloud_actionspanel.tpl b/view/tpl/cloud_actionspanel.tpl index 4d2afa8ef..44e4eb54c 100644 --- a/view/tpl/cloud_actionspanel.tpl +++ b/view/tpl/cloud_actionspanel.tpl @@ -8,7 +8,7 @@ <div class="clear"></div> </div> <div id="files-upload-tools" class="section-content-tools-wrapper form-group"> - {{if $quota.limit || $quota.used}}<div class="{{if $quota.warning}}section-content-danger-wrapper{{else}}section-content-info-wrapper{{/if}}">{{$quota.desc}}</div>{{/if}} + {{if $quota.limit || $quota.used}}<div class="{{if $quota.warning}}section-content-danger-wrapper{{else}}section-content-info-wrapper{{/if}}">{{if $quota.warning}}<strong>{{$quota.warning}} </strong>{{/if}}{{$quota.desc}}</div>{{/if}} <label for="files-upload">{{$upload_header}}</label> <form method="post" action="" enctype="multipart/form-data"> <input type="hidden" name="sabreAction" value="put"> |