zulip/static/templates/tab_bar.hbs

21 lines
905 B
Handlebars

<span id="tab_list">
{{#if stream_settings_link}}
<a class="stream" href="{{stream_settings_link}}">
{{> navbar_icon_and_title }}
</a>
<a class="sub_count no-style" data-toggle="tooltip" title="{{sub_count_tooltip_text}}" href="{{stream_settings_link}}">
<i class="fa fa-user-o"></i>{{formatted_sub_count}}
</a>
{{#if rendered_narrow_description}}
<span class="narrow_description rendered_markdown" data-toggle="tooltip">{{rendered_markdown rendered_narrow_description}}</span>
{{else}}
<span class="narrow_description rendered_markdown" data-toggle="tooltip">{{t "(no description)"}}</span>
{{/if}}
{{else}}
<span>
{{> navbar_icon_and_title }}
</span>
{{/if}}
<span class="search_icon search_closed" ><i class="fa fa-search" aria-hidden="true"></i></span>
</span>