{% extends "base.html" %} {% from "_macros.html" import icon %} {% from "_macros_ui.html" import empty_state %} {% block title %}Аналитика — TG Agent{% endblock %} {% block content %} {% macro msg_text(text, max_len=100) %}{{ (text or '')[:max_len] }}{{ '…' if text and text|length > max_len else '' }}{% endmacro %}
| # | Дата | Канал | Тип | Текст | Реакции | |
|---|---|---|---|---|---|---|
| {{ loop.index }} | {{ msg.date|local_dt }} | {{ msg.channel_title or msg.channel_username or msg.channel_id }} | {{ msg.media_type or 'text' }} | {{ msg_text(msg.text) }} | {{ msg.total_reactions }} | {% if msg.channel_username %} {{ icon("link") }} {% else %} {{ icon("link") }} {% endif %} |
{{ msg_text(msg.text) }}
{% if msg.channel_username %} Открыть {{ icon("link") }} {% else %} Открыть {{ icon("link") }} {% endif %}| Тип | Сообщений | Ср. реакций |
|---|---|---|
| {{ row.content_type }} | {{ row.message_count }} | {{ "%.1f"|format(row.avg_reactions) }} |
| Час | Сообщений | Ср. реакций |
|---|---|---|
| {{ '%02d:00'|format(row.hour) }} | {{ row.message_count }} | {{ "%.1f"|format(row.avg_reactions) }} |