2013-02-08 23:03:33 +01:00
|
|
|
{{! Contents of the "message actions" popup }}
|
|
|
|
<ul class="nav nav-list actions_popover">
|
2013-02-09 03:29:40 +01:00
|
|
|
<div class="popover_info">
|
2013-02-09 04:09:52 +01:00
|
|
|
<li>Sent by <b>{{message.sender_full_name}}</b></li>
|
|
|
|
<li class='my_email'>{{message.sender_email}}</li>
|
|
|
|
<hr />
|
|
|
|
|
2013-02-09 03:29:40 +01:00
|
|
|
<li>{{message.full_date_str}}</li>
|
|
|
|
<li>{{message.full_time_str}}</li>
|
|
|
|
<hr />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{#if narrowed}}
|
|
|
|
<li>
|
2013-02-12 23:38:08 +01:00
|
|
|
<a onclick="narrow.from_popover(); narrow.activate([], {target_id: {{message.id}} });">
|
2013-02-09 03:29:40 +01:00
|
|
|
<i class="icon-time"></i> Narrow to messages around this time
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
2013-02-09 08:47:01 +01:00
|
|
|
|
|
|
|
{{#if message.is_stream}}
|
|
|
|
<li>
|
2013-02-12 23:38:08 +01:00
|
|
|
<a onclick="narrow.from_popover(); narrow.by_subject({{message.id}});">
|
2013-02-09 08:47:01 +01:00
|
|
|
<i class="icon-bullhorn"></i>
|
|
|
|
Narrow to this subject on stream <b>{{message.display_recipient}}</b>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{else}}
|
|
|
|
<li>
|
2013-02-12 23:38:08 +01:00
|
|
|
<a onclick="narrow.from_popover(); narrow.by_recipient({{message.id}});">
|
2013-02-09 08:47:01 +01:00
|
|
|
<i class="icon-user"></i>
|
|
|
|
Narrow to this private message conversation
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2012-10-18 20:23:57 +02:00
|
|
|
<li>
|
|
|
|
<a onclick="respond_to_message();">
|
2013-02-09 03:29:40 +01:00
|
|
|
<i class="icon-share-alt"></i>
|
2013-02-09 06:49:15 +01:00
|
|
|
{{#if message.is_stream}}
|
2013-02-09 08:47:01 +01:00
|
|
|
Reply to this subject on stream <b>{{message.display_recipient}}</b>
|
2013-02-09 06:49:15 +01:00
|
|
|
{{else}}
|
|
|
|
Reply to this private message
|
|
|
|
{{/if}}
|
2012-10-18 20:23:57 +02:00
|
|
|
</a>
|
|
|
|
</li>
|
2013-02-09 03:29:40 +01:00
|
|
|
{{#unless message.is_private}}
|
2012-10-18 20:23:57 +02:00
|
|
|
<li>
|
|
|
|
<a onclick="respond_to_message('personal');">
|
2013-02-09 06:49:15 +01:00
|
|
|
<i class="icon-user"></i> Reply to <b>{{message.sender_full_name}}</b> only
|
2012-10-18 20:23:57 +02:00
|
|
|
</a>
|
|
|
|
</li>
|
2012-10-29 19:10:26 +01:00
|
|
|
{{/unless}}
|
2012-10-18 20:23:57 +02:00
|
|
|
</ul>
|