{% extends "dashboard/base.html" %} {% block title %}Agents{% endblock %} {% block content %}
| Display Name | Agent ID | Identity Type | Reputation | Wallet | Provides | Consumes | Status |
|---|---|---|---|---|---|---|---|
| {{ agent.display_name }} {% if agent.verified %} ✓ {% endif %} | {{ agent.agent_id[:16] }} | {{ agent.identity_type }} | {% set score = agent.reputation_score %} {{ "%.1f"|format(score) }} | {{ agent.wallet_address[:10] ~ '...' if agent.wallet_address else '-' }} | {% if agent.provided_services %} {{ agent.provided_services|length }} service{{ 's' if agent.provided_services|length != 1 else '' }} {% else %} - {% endif %} | {% if agent.consumed_services %} {{ agent.consumed_services|length }} service{{ 's' if agent.consumed_services|length != 1 else '' }} {% else %} - {% endif %} | {% if agent.status == 'active' %} Active {% elif agent.status == 'suspended' %} Suspended {% else %} {{ agent.status }} {% endif %} |