You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
852 B
HTML
20 lines
852 B
HTML
<div class="h-full flex flex-col text-secondosiblue">
|
|
<!-- CHATS -->
|
|
{% for chat in latest_chat_rooms %}
|
|
<div class="w-full flex flex-col gap-1 py-3 px-3 border-b border-gray-100 text-sm cursor-pointer"
|
|
data-id="{{chat.id}}" onclick="openConversation({{chat.id}})">
|
|
<div class="w-full flex justify-between items-center">
|
|
<p class="text-secondosiblue font-poppinsBold">{{chat.chatroomguest.name}}</p>
|
|
|
|
<div
|
|
class="w-[20px] h-[20px] bg-osiblue rounded-full shadow-md flex justify-center items-center text-white text-[10px]">
|
|
<p>22</p>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="text-gray-500 text-xs">{{chat.chatmessage_set.all.last.content}}</p>
|
|
|
|
<p class="text-gray-500 opacity-70 text-xs">{{chat.last_updated}}</p>
|
|
</div>
|
|
{% endfor %}
|
|
</div> |