{% extends "botapp/base.html" %} {% load static %} {% block title %}RPA | Lista de Bots{% endblock %} {% block content %}

Bots Disponíveis - {{ total_bots }}

{% for bot in bots %}
🤖

{{ bot.name }}

{{ bot.is_active|yesno:"Ativo,Inativo" }} {% if bot.latest_status %} {{ bot.latest_status|title }} {% endif %}
Departamento: {{ bot.department }} Versão: {{ bot.version }}

{{ bot.description|truncatechars:100 }}

{% empty %}

Nenhum bot encontrado com os filtros aplicados.

Limpar filtros
{% endfor %}
{% endblock %}