Files
zulip/static/templates/message_group.handlebars
Jason Michalski e60f76487f Rename message to message_container
Now that we are not directly using message in the message list view
rename the uses of message that are message_containers.

(imported from commit 5c355703a8934a74864f5de6ecb1e2fd851e5d41)
2014-03-18 15:05:39 -04:00

29 lines
637 B
Handlebars

{{! 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}}
<div class="recipient_row" id="{{message_group_id}}">
{{partial "recipient_row" "use_match_properties" ../../use_match_properties}}
{{#each message_containers}}
{{#with this}}
{{partial "single_message" "use_match_properties" ../../../../use_match_properties "table_name" ../../../../table_name}}
{{/with}}
{{/each}}
</div>
{{#if bookend_bottom}}
{{partial "bookend"}}
{{/if}}
{{/with}}
{{/each}}