{% extends "base.html" %} {% block title %}Поиск — TG Agent{% endblock %} {% block content %}
{{ result.ai_summary }}
Найдено: {{ result.total }} сообщений по запросу «{{ result.query }}»
{% 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 "—" }} | {{ msg.text[:300] if msg.text else "—" }}{{ "..." if msg.text and msg.text|length > 300 else "" }} | {%- 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 %} 💬 {{ 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 %}↗{% else %}↗{% endif %} |
{{ msg.text[:200] if msg.text else "—" }}{{ "..." if msg.text and msg.text|length > 200 else "" }}
{%- 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 %} 💬 {{ msg.reply_count }}{% endif %} {%- endif %}Ничего не найдено.
{% endif %} {% endif %} {% endblock %}