Files
tripwithbonus/templates/widgets/w_request_tech_support.html
2024-02-09 20:33:04 +03:00

31 lines
850 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load static %}
{% load i18n %}
{% load tz %}
<div class="container-message-req-sprt" onclick="openTicket({{ ticket.id }})">
<div class="message-sprt-inf">
<div>
<span>
{% translate "Статус:" %} {{ ticket.get_status_display }}
{# Статус: Открыт#}
</span>
{# <img>#}
<span id="modified_date">
{# 10.02.2023#}
{% timezone user_tz %}
{{ ticket.modifiedDT|date:"d.m.Y" }}
{% endtimezone %}
</span>
</div>
</div>
<div class="message-sprt-title">
<span>
{# Текст последнего сообщени в чате (с размытием)#}
{{ ticket.get_last_msg_txt }}
</span>
</div>
</div>