zulip/zephyr/static/templates/sidebar_stream_actions.hand...

28 lines
686 B
Handlebars

{{! Contents of the "message actions" popup }}
<ul class="nav nav-list actions_popover" data-name="{{ stream.name }}">
<li>
<a class="narrow_to_stream">
<i class="icon-vector-bullhorn"></i>
Narrow to this stream.
</a>
</li>
<li>
<a class="toggle_home">
{{#if stream.in_home_view}}
<i class="icon-vector-minus-sign"></i>
Hide this stream from your home view.
{{else}}
<i class="icon-vector-plus-sign"></i>
Show this stream in your home view.
{{/if}}
</a>
</li>
<li>
<a class="compose_to_stream">
<i class="icon-vector-edit"></i>
Compose a new message on this stream.
</a>
</li>
</ul>