{% extends "dashboard/base.html" %} {% block title %}Services{% endblock %} {% block content %}

Registered Services

{{ services|length }} service{{ 's' if services|length != 1 else '' }}
{% if services %} {% for svc in services %} {% endfor %}
Name Provider Category Price/Call Calls Avg Latency Status
{{ svc.name }} {{ svc.provider_id[:20] }} {{ svc.category or '-' }} ${{ "%.4f"|format(svc.price_per_call) }} {{ svc.currency }} {{ "{:,}".format(svc.call_count) }} {% if svc.avg_latency_ms > 0 %} {{ "%.1f"|format(svc.avg_latency_ms) }} ms {% else %} - {% endif %} {% if svc.status == 'active' %} Active {% elif svc.status == 'paused' %} Paused {% else %} {{ svc.status }} {% endif %}
{% else %}
No services registered
{% endif %}
{% endblock %}