Files
zulip/web/templates/settings/upload_space_stats.hbs
Maneesh Shukla 574932d4e3 settings: Update quota notice text and style.
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.
2024-10-15 16:12:34 -07:00

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>