12 lines
691 B
HTML
12 lines
691 B
HTML
<div style="" class="chatmessageele_me col-7 mb-3 " id="usermessage_{{newmessage.pk}}">
|
|
<div class='icon-container ml-2 mt-1 ' style="float: right;">
|
|
<img class="img-profile roundimg" src="{{ newmessage.author.profile.get_photo_url }}">
|
|
</div>
|
|
<h6 class="mt-3"><button class="btn btn-small" onclick="javascript:deleteOwnMessage({{newmessage.pk}})"><small><i class="fas fa-trash"></i></small></button> <small>{{newmessage.sendtime|date:"H:i"}}</small></h6>
|
|
<div style="text-align: left;" class="mt-1">
|
|
<span style="float: right !important; font-size: 1.0em;">
|
|
{{newmessage.content}}
|
|
</span>
|
|
</div>
|
|
</div>
|