mirror of
https://github.com/zulip/zulip.git
synced 2026-07-03 21:10:12 +08:00
A separate outer span with the title text needs to be added because: (1) The default bootstrap popover behavior takes the title as the popover title, if provided. (2) We need to avoid having the title area be too big in the me_message template. Fixes #12769. Co-Author-By: Vaibhav <vrongmeal@gmail.com>
25 lines
786 B
Handlebars
25 lines
786 B
Handlebars
<span class="message_sender no-select">
|
|
<span class="sender_info_hover">
|
|
<span title="{{t 'View user profile' }} (u)">
|
|
{{> message_avatar}}
|
|
</span>
|
|
</span>
|
|
|
|
<span class="sender-status">
|
|
<span class="sender_info_hover sender_name-in-status auto-select" role="button" tabindex="0">
|
|
<span title="{{t 'View user profile' }} (u)" >
|
|
{{msg/sender_full_name}}
|
|
</span>
|
|
</span>
|
|
{{#if sender_is_bot}}
|
|
<i class="zulip-icon bot" aria-label="{{t 'Bot' }}"></i>
|
|
{{/if}}
|
|
|
|
<span class="rendered_markdown status-message auto-select">{{rendered_markdown status_message}}</span>
|
|
|
|
{{#if edited_status_msg}}
|
|
{{> edited_notice}}
|
|
{{/if}}
|
|
</span>
|
|
</span>
|