mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
11 lines
435 B
Handlebars
11 lines
435 B
Handlebars
{{! This controls whether the swatch next to streams in the left sidebar has a lock icon. }}
|
|
{{#if is_archived}}
|
|
<i class="zulip-icon zulip-icon-archive" aria-hidden="true"></i>
|
|
{{else if invite_only}}
|
|
<i class="zulip-icon zulip-icon-lock" aria-hidden="true"></i>
|
|
{{else if is_web_public}}
|
|
<i class="zulip-icon zulip-icon-globe" aria-hidden="true"></i>
|
|
{{else}}
|
|
<i class="zulip-icon zulip-icon-hashtag" aria-hidden="true"></i>
|
|
{{/if}}
|