2012-10-10 16:29:48 +02:00
|
|
|
{{! Client-side Mustache template for rendering messages.}}
|
2012-10-02 20:47:01 +02:00
|
|
|
|
2012-10-10 16:37:15 +02:00
|
|
|
{{! Because we use table-layout: fixed for the Message table,
|
2012-10-02 20:47:01 +02:00
|
|
|
all the column widths are computed from the first row;
|
|
|
|
these CSS classes specify the widths for that first,
|
|
|
|
collapsed row. (Otherwise, colspan breaks everything).}}
|
2012-10-02 23:19:33 +02:00
|
|
|
{{#include_layout_row}}
|
2012-10-15 22:35:46 +02:00
|
|
|
<tr class="ztable_layout_row">
|
2012-10-02 20:47:01 +02:00
|
|
|
<td class="ztable_col1" />
|
|
|
|
<td class="ztable_col2" />
|
|
|
|
</tr>
|
2012-10-02 23:19:33 +02:00
|
|
|
{{/include_layout_row}}
|
2012-10-02 20:47:01 +02:00
|
|
|
|
2012-10-10 16:29:48 +02:00
|
|
|
{{#each messages}}
|
2012-09-24 23:26:32 +02:00
|
|
|
{{#with this}}
|
2012-09-24 22:36:09 +02:00
|
|
|
{{#include_bookend}}
|
2013-06-21 23:35:45 +02:00
|
|
|
<tr class="bookend_tr"><td colspan="2" class="bookend{{#if subscribed}} sub-unsub-message{{/if}}{{#if unsubscribed}} sub-unsub-message{{/if}}">
|
2013-04-03 23:30:06 +02:00
|
|
|
{{#if subscribed}}
|
2013-04-17 05:52:20 +02:00
|
|
|
<span>--- Subscribed to stream {{subscribed}} ---</span>
|
2013-04-03 23:30:06 +02:00
|
|
|
{{/if}}
|
|
|
|
{{#if unsubscribed}}
|
2013-04-17 05:52:20 +02:00
|
|
|
<span>--- Unsubscribed from stream {{unsubscribed}} ---</span>
|
2013-04-03 23:30:06 +02:00
|
|
|
{{/if}}
|
2013-04-17 05:52:20 +02:00
|
|
|
</td>
|
2013-04-03 23:30:06 +02:00
|
|
|
</tr>
|
2012-09-24 22:36:09 +02:00
|
|
|
{{/include_bookend}}
|
|
|
|
|
2013-06-24 23:16:50 +02:00
|
|
|
{{#if show_date}}
|
|
|
|
<tr class="date_row"><td colspan="4">{{{show_date}}}</td></tr>
|
|
|
|
{{/if}}
|
|
|
|
|
2012-09-20 21:33:45 +02:00
|
|
|
{{#include_recipient}}
|
2012-10-10 23:31:26 +02:00
|
|
|
{{#if is_stream}}
|
2012-11-14 23:33:13 +01:00
|
|
|
<tr zid="{{id}}" class="recipient_row">
|
2013-06-21 23:35:45 +02:00
|
|
|
<td class="message_header_colorblock" style="background-color: {{background_color}};"></td>
|
|
|
|
<td class="message_header message_header_stream right_part">
|
2013-02-05 20:51:11 +01:00
|
|
|
{{#if invite_only}}<i class="icon-lock" title="This is an invite-only stream"></i>{{/if}}
|
2012-12-01 04:37:52 +01:00
|
|
|
<span class="message_label_clickable narrows_by_recipient stream_label"
|
2012-10-31 17:45:50 +01:00
|
|
|
title="Narrow to stream "{{display_recipient}}"">{{display_recipient}}</span>
|
2013-05-09 00:39:47 +02:00
|
|
|
<i class="icon-vector-narrow icon-vector-small"></i>
|
2012-11-14 23:33:13 +01:00
|
|
|
<span class="message_label_clickable narrows_by_subject"
|
2013-04-29 22:56:50 +02:00
|
|
|
title="Narrow to stream "{{display_recipient}}", subject "{{subject}}"">{{#if ../../../../use_match_properties}}{{{match_subject}}}{{else}}{{subject}}{{/if}}</span>
|
2013-05-21 17:35:07 +02:00
|
|
|
{{#if your_empty_subject}}<i class="icon-vector-pencil edit_subject"></i>{{/if}}
|
2012-10-19 16:24:24 +02:00
|
|
|
</td>
|
2012-09-26 20:27:38 +02:00
|
|
|
</tr>
|
2012-09-28 17:19:31 +02:00
|
|
|
{{else}}
|
2012-11-14 23:33:13 +01:00
|
|
|
<tr zid="{{id}}" class="recipient_row">
|
2013-06-21 23:35:45 +02:00
|
|
|
<td class="message_header_colorblock message_header_private_message" style="background-color: {{background_color}};"></td>
|
2013-07-02 20:37:44 +02:00
|
|
|
<td class="message_header message_header_private_message right_part dark_background">
|
2013-02-16 09:43:27 +01:00
|
|
|
<span class="message_label_clickable narrows_by_recipient"
|
|
|
|
title="Narrow to your private messages with {{display_reply_to}}">
|
|
|
|
You and {{display_reply_to}}</span>
|
2012-10-17 22:03:00 +02:00
|
|
|
</td>
|
2012-09-20 21:33:45 +02:00
|
|
|
</tr>
|
2012-09-28 17:19:31 +02:00
|
|
|
{{/if}}
|
2012-09-20 21:33:45 +02:00
|
|
|
{{/include_recipient}}
|
2012-09-28 17:19:31 +02:00
|
|
|
<tr zid="{{id}}" id="{{dom_id}}"
|
2013-07-01 23:28:27 +02:00
|
|
|
class="message_row{{^is_stream}} private-message{{/is_stream}}{{#include_sender}} include-sender{{/include_sender}}{{#contains_mention}} mention{{/contains_mention}}{{#include_footer}} last_message{{/include_footer}}{{#unread}} unread{{/unread}}">
|
2013-06-27 08:49:38 +02:00
|
|
|
<td class="messagebox_colorblock{{^is_stream}} message_header_private_message{{/is_stream}}" style="background-color: {{background_color}};"><span class="pointer_icon"><i class="icon-vector-caret-right"></i></span></td>
|
|
|
|
<td class="messagebox{{^include_sender}} prev_is_same_sender{{/include_sender}}{{^is_stream}} private-message{{/is_stream}}">
|
2013-06-14 00:22:26 +02:00
|
|
|
<div class="message_top_line dropdown">
|
2012-09-28 17:19:31 +02:00
|
|
|
{{#include_sender}}
|
2013-06-14 00:22:26 +02:00
|
|
|
<span class="message_sender sender_actions_hover">
|
2013-06-13 23:48:23 +02:00
|
|
|
{{! See ../js/notifications.js for another user of avatar_url. }}
|
2013-05-10 22:48:02 +02:00
|
|
|
<div class="inline_profile_picture"
|
2013-06-13 23:48:23 +02:00
|
|
|
style="background-image: url('{{small_avatar_url}}');"/>
|
2012-11-06 19:30:16 +01:00
|
|
|
<span class="sender_name">{{sender_full_name}}</span>
|
2012-09-18 16:45:25 +02:00
|
|
|
</span>
|
2013-02-09 07:18:23 +01:00
|
|
|
{{/include_sender}}
|
2013-06-24 23:16:50 +02:00
|
|
|
<span class="message_time actions_hover">{{timestr}}</span>
|
2013-05-24 00:03:39 +02:00
|
|
|
<div class="message_controls">
|
|
|
|
<div class="star">
|
|
|
|
<span class="message_star {{#if starred}}icon-vector-star{{else}}icon-vector-star empty-star{{/if}}"
|
|
|
|
title="{{#if starred}}Unstar{{else}}Star{{/if}} this message"></i>
|
|
|
|
</div>
|
2013-06-14 00:22:26 +02:00
|
|
|
<div class="info message_actions_hover">
|
2013-06-12 19:27:07 +02:00
|
|
|
<i class="icon-vector-angle-down"></i>
|
|
|
|
</div>
|
2013-05-24 00:03:39 +02:00
|
|
|
</div>
|
2013-02-09 08:11:08 +01:00
|
|
|
</div>
|
2013-04-29 22:56:50 +02:00
|
|
|
<div class="message_content">{{#if ../../use_match_properties}}{{{match_content}}}{{else}}{{{content}}}{{/if}}</div>
|
2013-05-15 00:22:16 +02:00
|
|
|
<div class="message_edit">
|
|
|
|
<div class="message_edit_form" id="{{id}}"></div>
|
|
|
|
</div>
|
2013-03-13 22:47:38 +01:00
|
|
|
<div class="message_expander message_length_controller" title="See the rest of this message">[More...]</div>
|
2013-05-08 23:17:49 +02:00
|
|
|
<div class="message_condenser message_length_controller" title="Make this message take up less space on the screen">[Condense this message]</div>
|
2013-05-21 17:48:46 +02:00
|
|
|
{{#if last_edit_timestr}}
|
|
|
|
<div class="message_edit_notice">Last edited: {{{last_edit_timestr}}}</div>
|
|
|
|
{{/if}}
|
2012-09-18 16:45:25 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2012-09-24 23:26:32 +02:00
|
|
|
{{/with}}
|
|
|
|
{{/each}}
|
2013-04-10 23:38:30 +02:00
|
|
|
|
|
|
|
{{#if trailing_bookend}}
|
2013-06-21 23:35:45 +02:00
|
|
|
<tr id="trailing_bookend" class="bookend_tr"><td colspan="2" class="bookend">
|
2013-04-10 23:38:30 +02:00
|
|
|
<center>{{trailing_bookend}}</center>
|
|
|
|
<span class="tiny"><p></p></span></td>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|