2012-09-04 18:20:07 +02:00
|
|
|
{{! Client-side Mustache template for rendering zephyrs.}}
|
2012-10-02 20:47:01 +02:00
|
|
|
|
|
|
|
{{! Because we use table-layout: fixed for the Zephyr table,
|
|
|
|
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}}
|
|
|
|
<tr style="visibility: collapse;" class="ztable_layout_row">
|
2012-10-02 20:47:01 +02:00
|
|
|
<td class="ztable_col1" />
|
|
|
|
<td class="ztable_col2" />
|
|
|
|
<td class="ztable_col3" />
|
|
|
|
</tr>
|
2012-10-02 23:19:33 +02:00
|
|
|
{{/include_layout_row}}
|
2012-10-02 20:47:01 +02:00
|
|
|
|
2012-09-24 23:26:32 +02:00
|
|
|
{{#each zephyrs}}
|
|
|
|
{{#with this}}
|
2012-09-24 22:36:09 +02:00
|
|
|
{{#include_bookend}}
|
2012-10-01 23:13:46 +02:00
|
|
|
<tr><td /><td /><td class="bookend" /></tr>
|
2012-09-24 22:36:09 +02:00
|
|
|
{{/include_bookend}}
|
|
|
|
|
2012-09-20 21:33:45 +02:00
|
|
|
{{#include_recipient}}
|
2012-09-28 17:19:31 +02:00
|
|
|
{{#if is_class}}
|
2012-10-03 00:17:24 +02:00
|
|
|
<tr class="recipient_row">
|
2012-09-28 17:19:31 +02:00
|
|
|
<td colspan="2"
|
|
|
|
class="zephyr_label_clickable zephyr_newstyle_class"
|
|
|
|
onclick="select_zephyr_by_id({{id}}); narrow_class();">{{display_recipient}}</td>
|
|
|
|
<td class="zephyr_label_clickable zephyr_newstyle_instance"
|
|
|
|
onclick="select_zephyr_by_id({{id}}); narrow_instance();">{{instance}}</td>
|
2012-09-26 20:27:38 +02:00
|
|
|
</tr>
|
2012-09-28 17:19:31 +02:00
|
|
|
{{else}}
|
2012-10-03 00:17:24 +02:00
|
|
|
<tr class="recipient_row">
|
2012-09-28 20:34:09 +02:00
|
|
|
<td colspan="3" class="zephyr_label_clickable zephyr_newstyle_pm"
|
|
|
|
onclick="select_zephyr_by_id({{id}}); narrow_by_recipient();">Huddle with {{display_reply_to}}</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}}"
|
2012-09-28 17:26:02 +02:00
|
|
|
class="zephyr_row{{^is_class}} personal-message{{/is_class}}"
|
2012-09-28 17:19:31 +02:00
|
|
|
onclick="select_zephyr_by_id({{id}});">
|
2012-09-27 21:37:14 +02:00
|
|
|
<td class="zephyr_picture">
|
2012-09-26 20:27:38 +02:00
|
|
|
{{#include_sender}}
|
2012-09-28 17:19:31 +02:00
|
|
|
<img class="img-rounded profile_picture"
|
|
|
|
src="https://secure.gravatar.com/avatar/{{gravatar_hash}}?d=identicon&s=30"/>
|
2012-09-26 20:27:38 +02:00
|
|
|
{{/include_sender}}
|
2012-09-18 16:45:25 +02:00
|
|
|
</td>
|
2012-09-26 20:27:38 +02:00
|
|
|
<td class="pointer"><p></p></td>
|
2012-09-28 17:26:02 +02:00
|
|
|
<td class="messagebox{{^include_sender}} prev_is_same_sender{{/include_sender}}{{^is_class}} personal-message{{/is_class}}"
|
2012-09-26 23:37:21 +02:00
|
|
|
onmousedown="zephyr_mousedown();" onmousemove="zephyr_mousemove();">
|
2012-09-28 17:19:31 +02:00
|
|
|
{{#include_sender}}
|
|
|
|
<span class="zephyr_label_clickable zephyr_sender"
|
|
|
|
onmouseover="show_email({{id}});"
|
|
|
|
onmouseout="hide_email();">
|
|
|
|
<span class="zephyr_sender_name">{{sender_name}}</span>
|
|
|
|
<span class="zephyr_sender_email invisible">{{sender_email}}</span>
|
2012-09-18 16:45:25 +02:00
|
|
|
</span>
|
2012-09-13 22:00:11 +02:00
|
|
|
{{/include_sender}}
|
2012-09-18 16:45:25 +02:00
|
|
|
<span class="zephyr_time" title="{{full_date_str}}">{{timestr}}</span>
|
|
|
|
<div class="zephyr_content">{{{content}}}</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2012-09-24 23:26:32 +02:00
|
|
|
{{/with}}
|
|
|
|
{{/each}}
|