mirror of https://github.com/zulip/zulip.git
13 lines
441 B
Handlebars
13 lines
441 B
Handlebars
|
{{! This controls whether the swatch next to streams in the stream edit page has a lock icon. }}
|
||
|
{{#if invite_only}}
|
||
|
<div class="large-icon lock" style="color: {{color}}">
|
||
|
<i class="fa fa-lock" aria-hidden="true"></i>
|
||
|
</div>
|
||
|
{{else if is_web_public}}
|
||
|
<div class="large-icon" style="color: {{color}}">
|
||
|
<i class="fa fa-globe" aria-hidden="true"></i>
|
||
|
</div>
|
||
|
{{else}}
|
||
|
<div class="large-icon hash" style="color: {{color}}"></div>
|
||
|
{{/if}}
|