{% extends "base.html" %} {% set active_page = 'agents' %} {% block title %}Agent Setup · agentplan dashboard{% endblock %} {% block body_class %}dashboard-agents{% endblock %} {% block topbar_right %}
{% endblock %} {% block content %}| Name | Command | Roles | Actions |
|---|---|---|---|
| {{ agent.name }} | {{ agent.command_template }} |
{% for role in agent.roles %}
{{ role }}
{% endfor %}
{% if not agent.roles %}
none
{% endif %}
|
|
No agents configured.
{% endif %}