2023-02-09 22:43:25 +01:00
|
|
|
{{! Client-side Handlebars template for rendering messages. }}
|
2014-02-05 16:55:24 +01:00
|
|
|
|
|
|
|
{{#each message_groups}}
|
2017-02-15 21:06:42 +01:00
|
|
|
{{#with this}}
|
|
|
|
{{#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}}
|
2024-01-17 07:53:40 +01:00
|
|
|
{{> single_message use_match_properties=../../use_match_properties message_list_id=../../message_list_id}}
|
2017-02-15 21:06:42 +01:00
|
|
|
{{/with}}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
{{/with}}
|
2014-02-05 16:55:24 +01:00
|
|
|
{{/each}}
|