{% extends "base.html" %} {% block title %}Поиск — TG Agent{% endblock %} {% block content %}

Поиск по постам

{% if search_quota and search_quota.remains is not none %} Premium-поиск: осталось {{ search_quota.remains }}{% if search_quota.total_daily %} из {{ search_quota.total_daily }}{% endif %} сегодня {% endif %} {% if ai_enabled %}
{% endif %}
{% if result %}
{% if result.error %}
Ошибка: {{ result.error }}
{% endif %} {% if result.ai_summary %}
AI-анализ

{{ result.ai_summary }}

{% endif %} {% if not result.error %}

Найдено: {{ result.total }} сообщений по запросу «{{ result.query }}»

{% endif %} {% if result.messages %}
{% for msg in result.messages %} {% endfor %}
Дата Канал Отправитель Медиа Текст
{{ msg.date.strftime('%Y-%m-%d %H:%M') }} {{ 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.channel_username %}{% else %}{% endif %}
{% for msg in result.messages %}
{{ msg.channel_title or msg.channel_username or msg.channel_id }} {% if msg.channel_username %}{% else %}{% endif %}
{{ msg.date.strftime('%Y-%m-%d %H:%M') }}{% if msg.sender_name %} · {{ msg.sender_name }}{% endif %}{% if msg.media_type %} · {{ msg.media_type }}{% endif %}

{{ msg.text[:200] if msg.text else "—" }}{{ "..." if msg.text and msg.text|length > 200 else "" }}

{% endfor %}
{% if total_pages > 1 %} {% endif %} {% else %}

Ничего не найдено.

{% endif %} {% endif %} {% endblock %}