{% extends "base.html" %} {% from "_macros.html" import icon %} {% block title %}Поиск — TG Agent{% endblock %} {% block content %}
{{ result.ai_summary }}
Сообщения из канала {{ selected_channel.title or selected_channel.username or selected_channel.channel_id }}: {{ result.total }}
{% else %}Найдено: {{ result.total }} сообщений по запросу «{{ result.query }}»
{% endif %} {% endif %} {% if result.messages %}| Дата | Канал | Отправитель | Медиа | Текст | Охват | |
|---|---|---|---|---|---|---|
| {{ msg.date|local_dt }} | {{ msg.channel_title or msg.channel_username or msg.channel_id }} | {{ msg.sender_name or "—" }} | {{ msg.media_type or "—" }} |
{% if msg.detected_lang %}{{ msg.detected_lang }}{% endif %}
{{ msg.text[:300] if msg.text else "—" }}{{ "..." if msg.text and msg.text|length > 300 else "" }}
{% if msg.translation_en %}
{{ msg.translation_en[:300] }}{{ "..." if msg.translation_en|length > 300 else "" }}
{% elif msg.text and msg.detected_lang and msg.detected_lang != 'en' %}
{% endif %}
|
{%- if msg.views is not none %}👁 {{ msg.views }}{% endif %} {%- if msg.forwards is not none %} ↗ {{ msg.forwards }}{% endif %} {%- if msg.reply_count is not none %} {{ icon("comments") }} {{ msg.reply_count }}{% endif %} {%- if msg.views is none and msg.forwards is none and msg.reply_count is none %}—{% endif %} | {% if msg.channel_username %}{{ icon("link") }}{% else %}{{ icon("link") }}{% endif %} |
{% if msg.detected_lang %}{{ msg.detected_lang }}{% endif %} {{ msg.text[:200] if msg.text else "—" }}{{ "..." if msg.text and msg.text|length > 200 else "" }} {% if msg.translation_en %} {{ msg.translation_en[:200] }}{{ "..." if msg.translation_en|length > 200 else "" }} {% elif msg.text and msg.detected_lang and msg.detected_lang != 'en' %} {% endif %}
{%- if msg.views is not none or msg.forwards is not none or msg.reply_count is not none %} {%- if msg.views is not none %}👁 {{ msg.views }}{% endif %} {%- if msg.forwards is not none %} ↗ {{ msg.forwards }}{% endif %} {%- if msg.reply_count is not none %} {{ icon("comments") }} {{ msg.reply_count }}{% endif %} {%- endif %}Ничего не найдено.
{% endif %} {% endif %} {% endblock %}