{% extends "base.html" %} {% block title %}Панель — TG Agent{% endblock %} {% block content %}

Панель

Аккаунты

{{ stats.get('accounts', 0) }} в базе

{{ accounts_connected }} подключено

{% if accounts_flood_wait %}

{{ accounts_flood_wait }} в flood-wait

{% endif %} {% if collector_attention %}

Коллектор ограничен, открыть диагностику

{% endif %}
Каналы

В базе: {{ stats.get('channels', 0) }}

Отфильтровано: {{ stats.get('channels_filtered', 0) }}

Отслеживается: {{ stats.get('channels_tracked', 0) }}

Сообщения

{{ stats.get('messages', 0) }} всего

{% if stats.get('messages_today', 0) %}

+{{ stats.get('messages_today', 0) }} за 24ч

{% endif %} {% if last_collect_ago %}

последний сбор: {{ last_collect_ago }}

{% endif %} {% if active_tasks %}

{{ active_tasks }} задач в очереди

{% endif %}
Поиск + Планировщик

{{ stats.get('search_queries', 0) }} запросов

Интервал: {{ scheduler_interval }} мин

Статус: {{ "Запущен" if scheduler_running else "Остановлен" }}

{% if pipelines_total or content_published %}
Контент

Пайплайны

{{ pipelines_active }} / {{ pipelines_total }} активных

На модерации

{{ content_pending + content_approved }}

Опубликовано

{{ content_published }}

{% endif %} {% endblock %}