2014-02-05 16:55:24 +01:00
|
|
|
{{! Client-side Mustache template for rendering messages.}}
|
|
|
|
|
|
|
|
{{#each message_groups}}
|
2017-02-15 21:06:42 +01:00
|
|
|
{{#with this}}
|
2014-02-05 16:55:24 +01:00
|
|
|
|
2017-05-16 23:19:57 +02:00
|
|
|
{{#if show_date_separator}}
|
2017-02-15 21:06:42 +01:00
|
|
|
<div class="date_row">{{{show_date}}}</div>
|
|
|
|
{{/if}}
|
2014-02-05 16:55:24 +01:00
|
|
|
|
2017-02-15 21:06:42 +01:00
|
|
|
{{#if bookend_top}}
|
|
|
|
{{partial "bookend"}}
|
|
|
|
{{/if}}
|
2014-02-05 16:55:24 +01:00
|
|
|
|
2017-02-15 21:06:42 +01:00
|
|
|
<div class="recipient_row" id="{{message_group_id}}">
|
2017-03-05 07:03:20 +01:00
|
|
|
{{partial "recipient_row" "use_match_properties" ../use_match_properties}}
|
2017-02-15 21:06:42 +01:00
|
|
|
{{#each message_containers}}
|
|
|
|
{{#with this}}
|
2017-03-05 07:03:20 +01:00
|
|
|
{{partial "single_message" "use_match_properties" ../../use_match_properties "table_name" ../../table_name}}
|
2017-02-15 21:06:42 +01:00
|
|
|
{{/with}}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
2014-02-05 16:55:24 +01:00
|
|
|
|
2017-02-15 21:06:42 +01:00
|
|
|
{{#if bookend_bottom}}
|
|
|
|
{{partial "bookend"}}
|
|
|
|
{{/if}}
|
2014-02-05 16:55:24 +01:00
|
|
|
|
2017-02-15 21:06:42 +01:00
|
|
|
{{/with}}
|
2014-02-05 16:55:24 +01:00
|
|
|
{{/each}}
|