{% extends "base.html" %} {% block title %}Agent Details{% endblock %} {% block content %}
Detailed information and task history
{{ agent.agent_id }}
| Task ID | Description | Command | Parameters | Status | Assigned At |
|---|---|---|---|---|---|
| {{ task.task_id }} | {{ task.description }} | {{ task.command }} |
{% if task.parameters %}
{{ task.parameters }}
{% else %}
N/A
{% endif %}
|
{% if task.status == 'pending' %} Pending {% elif task.status == 'in_progress' %} In Progress {% elif task.status == 'completed' %} Completed {% else %} Failed {% endif %} | {{ task.assigned_at }} |
No tasks assigned to this agent
Create New Task