intra_max_chatbot/admin/templates/chat_log/list.html
2026-03-26 00:25:37 +03:00

27 lines
956 B
HTML
Raw 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.

{% extends "base.html" %}
{% block title %}Чаты{% endblock %}
{% block content %}
<h1>Чаты с клиентами</h1>
<div class="card">
<table>
<thead>
<tr><th>Пользователь</th><th>MAX ID</th><th>Последнее сообщение</th><th>Время</th><th></th></tr>
</thead>
<tbody>
{% for c in chats %}
<tr>
<td>{{ c.first_name or c.username or '—' }}</td>
<td>{{ c.max_user_id }}</td>
<td style="max-width:300px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap">
{{ c.text or '[вложение]' }}
</td>
<td>{{ c.created_at[:16] }}</td>
<td><a href="/admin/chat-log/{{ c.max_user_id }}" class="btn btn-secondary">История</a></td>
</tr>
{% else %}
<tr><td colspan="5" style="text-align:center;color:#999">Сообщений нет</td></tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}