Files
tripwithbonus/templates/widgets/tickets_w_manager.html
2023-08-14 14:14:05 +03:00

9 lines
318 B
HTML

{% load static %}
<div class="block_tickets_in_work">
<span class="title-list-of-users">Тикеты в работе</span>
{% if tickets_for_manager %}
{% for item in tickets_for_manager %}
{% include "widgets/w_chat_right_panel_tickets.html" %}
{% endfor %}
{% endif %}
</div>