{% extends "base.html" %} {% block title %}Agents{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Managed agents

{% if agents %} {{ agents|length }} agent{{ agents|length|pluralize }} {% endif %}
{% if agents %}
{% for a in agents %}
{{ a.name }} {% if a.control_status == "active" and a.is_live %} {{ a.status_label }} {% elif a.control_status == "active" %} {{ a.status_label }} {% elif a.control_status == "paused" %} {{ a.status_label }} {% else %} {{ a.status_label }} {% endif %}
{{ a.agent_key }} {% if a.framework %}{{ a.framework }}{% endif %} Last seen {{ a.last_seen_label }}
{% csrf_token %}
{% endfor %}
{% else %}

No active agent

{% endif %}
{% endblock %}