{% extends "botapp/base.html" %} {% load static %} {% block title %}Thresholds de silêncio | RPA Monitor{% endblock %} {% block content %}

Thresholds de silêncio

{{ total_bots }} bot(s) no filtro atual · default global: {{ default_hours }}h

Bots sem configuração herdam o default. Use minutos para bots de alta frequência (ex.: 10min).

{% for dept in departments %}{% endfor %}
Limpar
{% if bots %}
0 selecionado(s)
{% for bot in bots %} {% endfor %}
Bot Departamento Ativo Último status Threshold atual Última execução
{{ bot.name }} {{ bot.department|default:"—" }} {% if bot.is_active %}Ativo {% else %}Inativo{% endif %} {% if bot.last_status == 'completed' %}Completo {% elif bot.last_status == 'failed' %}Falhou {% elif bot.last_status == 'started' %}Iniciado {% else %}{% endif %} {% if bot.silence_threshold_minutes %}{{ bot.silence_threshold_minutes }}min {% elif bot.silence_threshold_hours %}{{ bot.silence_threshold_hours }}h {% else %}default ({{ default_hours }}h){% endif %} {{ bot.last_execution_at|date:"d/m/Y H:i"|default:"—" }}
{% if page_obj.has_previous %} « {% endif %} Página {{ page_obj.number }} de {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} » {% endif %}
{% else %}

Nenhum bot encontrado com os filtros aplicados.

Limpar filtros
{% endif %}
{% endblock %}