mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
Changed the text of the quota notice to "Your organization is using x% of your 5 GB file storage quota. Upgrade for more space." Instead of having a link on "Upgrade", the entire notice is now a clickable banner with a rocket icon, consistent with other banners used in settings. Fixes #29077.
12 lines
299 B
Handlebars
12 lines
299 B
Handlebars
<span>
|
|
{{#if show_upgrade_message}}
|
|
<a href="/upgrade/" class="upgrade-tip" target="_blank" rel="noopener noreferrer">
|
|
{{upload_quota_string}} {{t "Upgrade for more space." }}
|
|
</a>
|
|
{{else}}
|
|
<div class="tip">
|
|
{{upload_quota_string}}
|
|
</div>
|
|
{{/if}}
|
|
</span>
|