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}}
|
2019-02-08 20:24:01 +01:00
|
|
|
{{#if show_group_date_divider}}
|
2019-02-08 20:11:21 +01:00
|
|
|
<div class="date_row no-select">{{{group_date_divider_html}}}</div>
|
2017-02-15 21:06:42 +01:00
|
|
|
{{/if}}
|
2014-02-05 16:55:24 +01:00
|
|
|
|
2017-02-15 21:06:42 +01:00
|
|
|
{{#if bookend_top}}
|
2019-07-11 04:05:28 +02:00
|
|
|
{{> bookend}}
|
2017-02-15 21:06:42 +01:00
|
|
|
{{/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}}">
|
2019-07-11 04:05:28 +02:00
|
|
|
{{> recipient_row use_match_properties=../use_match_properties}}
|
2017-02-15 21:06:42 +01:00
|
|
|
{{#each message_containers}}
|
|
|
|
{{#with this}}
|
2019-07-11 04:05:28 +02:00
|
|
|
{{> single_message use_match_properties=../../use_match_properties table_name=../../table_name}}
|
2017-02-15 21:06:42 +01:00
|
|
|
{{/with}}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
{{/with}}
|
2014-02-05 16:55:24 +01:00
|
|
|
{{/each}}
|