mirror of https://github.com/zulip/zulip.git
14 lines
670 B
Handlebars
14 lines
670 B
Handlebars
<div zid="{{msg/id}}" id="{{table_name}}{{msg/id}}"
|
|
class="message_row{{#unless msg/is_stream}} private-message{{/unless}}{{#include_sender}} include-sender{{/include_sender}}{{#if mention_classname}} {{mention_classname}}{{/if}}{{#msg.unread}} unread{{/msg.unread}} {{#if msg.locally_echoed}}locally-echoed{{/if}} selectable_row"
|
|
role="listitem">
|
|
<div class="unread_marker"><div class="unread-marker-fill"></div></div>
|
|
{{#if want_date_divider}}
|
|
<div class="date_row no-select">{{{date_divider_html}}}</div>
|
|
{{/if}}
|
|
<div class="messagebox">
|
|
<div class="messagebox-content">
|
|
{{> message_body}}
|
|
</div>
|
|
</div>
|
|
</div>
|