20 lines
560 B
HTML
20 lines
560 B
HTML
{% load static %}
|
|
{% load tz %}
|
|
|
|
{#{% 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 %}
|
|
{% timezone user_tz %}
|
|
<span style="display: none" class="date_n_time_last_message" data-modifiedDT="{{ msg.modifiedDT|date:"d.m.Y H:i:s:u" }}"></span>
|
|
{% endtimezone %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
<div class="clear_both"></div>
|
|
|
|
|