18 lines
478 B
HTML
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>
|
|
|
|
|