The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/views/app/chatMessageDashboard.html

31 lines
966 B

<template name="chatMessageDashboard">
<li class="message with-thumb {{own}} {{data.type}}" data-scroll-to-bottom="{{scroll}}">
{{#with data}}
{{#if isSystemMessage}}
<p class="system">{{{message}}}</p>
{{else}}
<a class="thumb user-card-message" href="#" data-userid="{{uid}}" tabindex="1">
{{> avatar userId=uid}}
</a>
<a class="user user-card-message" href="#" data-userid="{{uid}}" tabindex="1">{{username}}</a>
<span class="time">
{{time}}
{{#if ets}}
({{_ "edited"}})
{{/if}}
<i class="icon-pencil edit-message"></i>
</span>
{{#if isEditing}}
<div class="input-message-editing-container">
{{> messagePopupConfig getPupupConfig}}
<textarea class="input-message-editing">{{message}}</textarea>
</div>
{{else}}
<div>
{{#markdown}}{{#emojione}}{{autolinker message}}{{/emojione}}{{/markdown}}
</div>
{{/if}}
{{/if}}
{{/with}}
</li>
</template>