{% extends "base.html" %} {% block title %}Чат — {{ bot_user.first_name or bot_user.username or max_user_id if bot_user else max_user_id }}{% endblock %} {% block content %}
← К списку
{{ bot_user.first_name or bot_user.username or ('MAX ID: ' ~ max_user_id) if bot_user else ('MAX ID: ' ~ max_user_id) }} {% if bot_user %} MAX ID: {{ max_user_id }} {% if bot_user.phone %} · {{ bot_user.phone }}{% endif %} {% if bot_user.org_name %} · {{ bot_user.org_name }}{% endif %} {% if bot_user.is_blocked %} Заблокирован {% elif bot_user.is_authorized %} Авторизован {% else %} Ожидает {% endif %} {% endif %}
{# Лента сообщений #}
{% for msg in messages|reverse %}
{% if msg.direction == 'out' %}
Поддержка
{% endif %} {% if msg.text %}
{{ msg.text }}
{% endif %} {% if msg.attachment_json and msg.attachment_json != 'null' %}
📎 Вложение
{% endif %}
{{ msg.created_at[:16] }}
{% else %}

История пуста

{% endfor %}
{# Форма отправки #} {% if bot_user and bot_user.max_chat_id %}
Ctrl+Enter для отправки
{% else %}
ℹ️ Отправка недоступна: нет chat_id (пользователь ещё не начал диалог с ботом).
{% endif %} {% endblock %}