mirror of https://github.com/zulip/zulip.git
14 lines
462 B
HTML
14 lines
462 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}}huddle{{/if}}
|
||
|
</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a onclick="respond_to_message('personal');">
|
||
|
<i class="icon-user"></i> Start a huddle with me
|
||
|
</a>
|
||
|
</li>
|
||
|
</ul>
|