mirror of https://github.com/zulip/zulip.git
16 lines
522 B
HTML
16 lines
522 B
HTML
{{! Client-side Mustache template for the contents of the little "userinfo" popup that shows up when you click on a name }}
|
|
<ul class="nav nav-list userinfo_popover">
|
|
<li>
|
|
<a onclick="respond_to_message();">
|
|
<i class="icon-share-alt"></i> Reply to this {{#if is_stream}}stream{{else}}private message{{/if}}
|
|
</a>
|
|
</li>
|
|
{{#unless is_private}}
|
|
<li>
|
|
<a onclick="respond_to_message('personal');">
|
|
<i class="icon-user"></i> Reply to {{sender_full_name}} only
|
|
</a>
|
|
</li>
|
|
{{/unless}}
|
|
</ul>
|