mirror of https://github.com/zulip/zulip.git
19 lines
596 B
Handlebars
19 lines
596 B
Handlebars
{{! Client-side Handlebars template for rendering messages. }}
|
|
|
|
{{#each message_groups}}
|
|
{{#with this}}
|
|
{{#if bookend_top}}
|
|
{{> bookend}}
|
|
{{/if}}
|
|
|
|
<div class="recipient_row" id="{{message_group_id}}">
|
|
{{> recipient_row use_match_properties=../use_match_properties}}
|
|
{{#each message_containers}}
|
|
{{#with this}}
|
|
{{> single_message use_match_properties=../../use_match_properties message_list_id=../../message_list_id}}
|
|
{{/with}}
|
|
{{/each}}
|
|
</div>
|
|
{{/with}}
|
|
{{/each}}
|