mirror of https://github.com/zulip/zulip.git
20 lines
810 B
Handlebars
20 lines
810 B
Handlebars
{{! Stream sidebar rows }}
|
|
|
|
<li class="narrow-filter{{#if is_muted}} out_of_home_view{{/if}}"
|
|
data-stream-id="{{id}}" data-stream-name="{{name}}">
|
|
<div class="bottom_left_row">
|
|
<div class="subscription_block selectable_sidebar_block">
|
|
|
|
<span id="stream_sidebar_privacy_swatch_{{id}}" class="stream-privacy filter-icon" style="color: {{color}}">
|
|
{{! This controls whether the swatchnext to streams in the left sidebar has a lock icon. }}
|
|
{{ partial "stream_privacy" }}
|
|
</span>
|
|
|
|
<a href="{{uri}}" class="stream-name">{{name}}</a>
|
|
|
|
<div class="count"><div class="value"></div></div>
|
|
</div>
|
|
<span class="stream-sidebar-arrow"><i class="fa fa-chevron-down" aria-hidden="true"></i></span>
|
|
</div>
|
|
</li>
|