Files
account_store/templates/blocks/profile/b_messages_container.html
SDE 0d545172d6 0.1.47
chat routines
2023-08-08 16:39:01 +03:00

17 lines
408 B
HTML

{% load static %}
{% if not messages and ticket %}
{% include "widgets/w_message.html" %}
{% else %}
{% for msg in messages %}
{% include "widgets/w_message.html" %}
{% if forloop.first %}
<span style="display: none" class="date_n_time_last_message" data-modifiedDT="{{ msg.modifiedDT|date:"d.m.Y H:i:s:u" }}"></span>
{% endif %}
{% endfor %}
{% endif %}