Files
tripwithbonus/templates/blocks/profile/b_messages_container.html
2023-09-17 18:11:02 +03:00

18 lines
478 B
HTML

{% load static %}
{#{% include "widgets/w_file.html" %}#}
{% 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 %}
<div class="clear_both"></div>