mirror of https://github.com/zulip/zulip.git
21 lines
686 B
Handlebars
21 lines
686 B
Handlebars
{{! Contents of the "starred messages sidebar" popup }}
|
|
<ul class="nav nav-list">
|
|
<li>
|
|
<a id="unstar_all_messages">
|
|
<i class="fa fa-star-o" aria-hidden="true"></i>
|
|
{{#tr this}}Unstar all messages{{/tr}}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a id="toggle_display_starred_msg_count">
|
|
{{#if starred_message_counts}}
|
|
<i class="fa fa-eye-slash" aria-hidden="true"></i>
|
|
{{#tr this}}Hide starred message count{{/tr}}
|
|
{{else}}
|
|
<i class="fa fa-eye" aria-hidden="true"></i>
|
|
{{#tr this}}Show starred message count{{/tr}}
|
|
{{/if}}
|
|
</a>
|
|
</li>
|
|
</ul>
|