{% extends "base.html" %} {% block title %}Каналы — TG Agent{% endblock %} {% block content %}

Каналы

Добавить канал
Форматы: @username, t.me/username, https://t.me/username, https://t.me/+invite_hash, числовой ID
Импорт
{% if channels or show_all %}
Активные Все каналы
{% for ch in channels %} {% set st = latest_stats.get(ch.channel_id) if latest_stats else None %} {% endfor %}
ID канала Название Username Тип Статус Сообщений Подписчики Фильтр Действия
{{ ch.channel_id }} {{ ch.title or "—" }} {% if ch.username %}@{{ ch.username }}{% else %}—{% endif %} {% if ch.channel_type == "channel" %}{% if not ch.username %}Канал 🔒{% else %}Канал{% endif %}{% elif ch.channel_type == "supergroup" %}{% if not ch.username %}Супергруппа 🔒{% else %}Супергруппа{% endif %}{% elif ch.channel_type == "gigagroup" %}{% if not ch.username %}Гигагруппа 🔒{% else %}Гигагруппа{% endif %}{% elif ch.channel_type == "group" %}{% if not ch.username %}Группа 🔒{% else %}Группа{% endif %}{% elif ch.channel_type == "forum" %}{% if not ch.username %}Форум 🔒{% else %}Форум{% endif %}{% elif ch.channel_type == "monoforum" %}Монофорум{% elif ch.channel_type == "restricted" %}Ограничен{% elif ch.channel_type == "scam" %}Скам ⚠️{% elif ch.channel_type == "fake" %}Фейк ⚠️{% elif ch.channel_type == "unavailable" %}Недоступен{% else %}Непроверен{% endif %} {% if ch.is_filtered %} {% elif ch.is_active %} {% else %}{% endif %} {{ ch.message_count }} {{ st.subscriber_count if st and st.subscriber_count is not none else "—" }} {% if ch.is_filtered %} {% set flag_emoji = { "low_uniqueness": ("🖨️", "Низкая уникальность контента"), "low_subscriber_ratio": ("📉", "Мало подписчиков"), "low_subscriber_manual": ("✋", "Мало подписчиков (абс.)"), "manual": ("🚫", "Ручная фильтрация"), "cross_channel_spam": ("📢", "Кросс-канальный спам"), "non_cyrillic": ("🌐", "Не кириллический контент"), "chat_noise": ("💬", "Шум чата"), "username_changed": ("🔀", "Сменил юзернейм") } %} {% if ch.filter_flags %} {% for flag in ch.filter_flags.split(',') %} {% set f = flag.strip() %} {% if f in flag_emoji %} {{ flag_emoji[f][0] }} {% else %} 🚫 {% endif %} {% endfor %} {% else %} 🚫 {% endif %} {% else %} — {% endif %} {% if ch.is_filtered %}
{% if ch.message_count > 0 %}
{% endif %} {% endif %}
{% for ch in channels %} {% set st = latest_stats.get(ch.channel_id) if latest_stats else None %}
{% if ch.is_filtered %} {% elif ch.is_active %} {% else %}{% endif %} {{ ch.title or "—" }}
{% if ch.username %}@{{ ch.username }} · {% endif %} ID: {{ ch.channel_id }} · {{ ch.message_count }} сообщ.
{% if ch.is_filtered %}
{% if ch.message_count > 0 %}
{% endif %} {% endif %}
{% endfor %}
{% else %}

Нет добавленных каналов.

{% endif %} {% endblock %}