2014-02-05 16:55:24 +01:00
|
|
|
{{! Client-side Mustache template for rendering messages.}}
|
|
|
|
|
|
|
|
{{#each message_groups}}
|
|
|
|
{{#with this}}
|
|
|
|
|
|
|
|
{{#if show_date}}
|
|
|
|
<div class="date_row">{{{show_date}}}</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if bookend_top}}
|
|
|
|
{{partial "bookend"}}
|
|
|
|
{{/if}}
|
|
|
|
|
2014-03-08 08:59:38 +01:00
|
|
|
<div class="recipient_row" id="{{message_group_id}}">
|
2014-03-03 21:59:29 +01:00
|
|
|
{{partial "recipient_row" "use_match_properties" ../../use_match_properties}}
|
2014-03-17 19:38:35 +01:00
|
|
|
{{#each message_containers}}
|
2014-02-05 16:55:24 +01:00
|
|
|
{{#with this}}
|
2014-03-13 16:45:22 +01:00
|
|
|
{{partial "single_message" "use_match_properties" ../../../../use_match_properties "table_name" ../../../../table_name}}
|
2014-02-05 16:55:24 +01:00
|
|
|
{{/with}}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{#if bookend_bottom}}
|
|
|
|
{{partial "bookend"}}
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{/with}}
|
|
|
|
{{/each}}
|