This commit is contained in:
2023-08-14 14:14:05 +03:00
parent 42a5452fc5
commit 3465563b27
5 changed files with 33 additions and 16 deletions

View File

@@ -0,0 +1,9 @@
{% 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>

View File

@@ -0,0 +1,12 @@
{% load static %}
<span class="title-list-of-users">Неразобранные тикеты</span>
<div class="insert_users">
{% if tickets_wo_manager %}
{% for item in tickets_wo_manager %}
{% include "widgets/w_chat_right_panel_tickets.html" %}
{% endfor %}
{% endif %}
</div>