{% extends "base.html" %} {% from "_macros.html" import icon %} {% block title %}Поисковые запросы — TG Agent{% endblock %} {% block head_scripts %} {% endblock %} {% block content %}

Поисковые запросы

Добавить запрос
{% if items %}
{% for item in items %} {% set sq = item.query %} {% if item.daily_stats %} {% endif %} {% endfor %}
Запрос Режим Интервал Активен Всего (30д) Посл. запуск Действия
{{ sq.query }}{% if sq.is_regex %} (regex){% endif %}{% if sq.is_fts %} (fts){% endif %} {% if sq.notify_on_collect %}{{ icon("notification") }}{% endif %} {% if sq.track_stats %}{{ icon("stats") }}{% endif %} {% if sq.track_stats %}{{ sq.interval_minutes }} мин{% else %}—{% endif %} {% if sq.is_active %}{{ icon("active") }}{% else %}{% endif %} {{ item.total_30d }} {{ item.last_run[:16] if item.last_run else "—" }} {% if sq.is_regex %} {{ icon("search") }} {% else %} {{ icon("search") }} {% endif %}
График по дням ({{ item.daily_stats | length }} дн.)
{% for item in items %} {% set sq = item.query %}
{{ sq.query }} {% if sq.is_active %}{{ icon("active") }}{% else %}{% endif %}
{% if sq.is_regex %}regex{% endif %}{% if sq.is_fts %}fts{% endif %} {% if sq.track_stats %}· {{ sq.interval_minutes }} мин{% endif %} · {{ item.total_30d }} за 30д {% if item.last_run %}· {{ item.last_run[:16] }}{% endif %}
{% if not sq.is_regex %} {{ icon("search") }} {% endif %}
{% endfor %}
{% else %}

Нет поисковых запросов.

{% endif %} {% endblock %}