{% for agent in data %} {% set agent_label = agent.name or agent.id %} {% endfor %}
Actions ID Name Description Endpoint Tags Type Status Reachability Owner Team Visibility
{{ (pagination.page - 1) * pagination.per_page + loop.index }}
{{ agent.name }}
{{ agent.description if agent.description else '' }} {{ agent.endpointUrl }} {% if agent.tags %} {% for tag in agent.tags %} {% if tag is mapping %}{{ tag.id }}{% else %}{{ tag }}{% endif %} {% endfor %} {% endif %} {{ agent.agentType }}
{% if agent.enabled %}Active{% else %}Inactive{% endif %}
{% if agent.reachable %}Reachable{% else %}Unreachable{% endif %}
{{ agent.ownerEmail }} {{ agent.team }} {% if agent.visibility == 'private' %} Private {% elif agent.visibility == 'team' %} Team {% elif agent.visibility == 'public' %} Public {% else %} N/A {% endif %}
{% set base_url = root_path + '/admin/a2a/partial' %} {% set hx_target = '#agents-table' %} {% set hx_indicator = '#agents-loading' %} {% set table_name = 'agents' %} {% set query_params = {'include_inactive': include_inactive} %} {% autoescape false %} {% include 'pagination_controls.html' %} {% endautoescape %}