Create custom chat dialog template

This commit is contained in:
Gabriel Arazas 2023-11-08 13:52:51 +08:00
parent abd1be0193
commit b3782881f9
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

13
templates/chat.html.erb Normal file
View File

@ -0,0 +1,13 @@
<div<%= @id && %( id="#{@id}") %>
role="figure"
class="dialogblock <%= role %>"
data-avatar="<%= attr 'name' %>">
<div class="dialogblock__avatar" title="<%= attr 'name' %>">
<img src="<%= parent.image_uri (attr :avatarsticker), 'avatarsdir' %>"
alt="<%= attr 'name' %>"
loading="lazy"/>
</div>
<div class="dialogblock__text">
<%= content %>
</div>
</div>