{% extends "base.html" %} {% block title %}История чата {{ max_user_id }}{% endblock %} {% block content %}

История чата

← К списку чатов
{% for msg in messages|reverse %}
{% if msg.text %}
{{ msg.text }}
{% endif %} {% if msg.attachment_json and msg.attachment_json != 'null' %}
📎 Вложение
{% endif %}
{{ msg.created_at[:16] }} {% if msg.direction == 'in' %} · входящее{% else %} · исходящее{% endif %}
{% else %}

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

{% endfor %}
{% endblock %}