mirror of https://github.com/zulip/zulip.git
33 lines
1.1 KiB
Handlebars
33 lines
1.1 KiB
Handlebars
{{! Contents of the "message info" popup }}
|
|
<ul class="nav nav-list actions_popover sender_info_popover" data-user-id="{{message.sender_id}}">
|
|
<div class="popover_info">
|
|
<li><b>{{message.sender_full_name}}</b></li>
|
|
<li class='my_email'>{{sender_email}}</li>
|
|
|
|
{{#if message.historical}}
|
|
<li class="small">({{t "Message sent when you were not subscribed" }})</li>
|
|
{{/if}}
|
|
</div>
|
|
<hr />
|
|
<li>
|
|
<a href="#" class="respond_personal_button">
|
|
<i class="icon-vector-edit"></i> {{#tr this}}Send private message{{/tr}}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ pm_with_uri }}" class="narrow_to_private_messages">
|
|
<i class="icon-vector-user"></i> {{#tr this}}Private messages with user{{/tr}}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ sent_by_uri }}" class="narrow_to_messages_sent">
|
|
<i class="icon-vector-bullhorn"></i> {{#tr this}}Messages sent by user{{/tr}}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="mention_user">
|
|
<i>@</i> {{#tr this}}Reply mentioning user{{/tr}}
|
|
</a>
|
|
</li>
|
|
</ul>
|