Files
zulip/zephyr/jstemplates/userinfo_popover_content.html
Zev Benjamin 7e4776322d [manual] Unify huddles and personals into private messages on the receive path
feedback-bot and zephyr_mirror will need to be updated and restarted
when this is deployed to prod.

(imported from commit fe2b524424c174bcb1b717a851a5d3815fda3f69)
2012-12-04 18:01:51 -05:00

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>