{% extends "dashboard/base.html" %} {% block title %}Provider Growth{% endblock %} {% block content %}
| Provider | Quality Tier | Revenue | Commission | Net Payout | 7d Calls | 30d Calls | All-Time | Avg Latency | Success Rate |
|---|---|---|---|---|---|---|---|---|---|
| {{ p.provider_id[:20] }} | {% if p.quality_tier == 'Premium' %} Premium {% elif p.quality_tier == 'Verified' %} Verified {% else %} Standard {% endif %} | ${{ "%.2f"|format(p.total_revenue) }} | ${{ "%.2f"|format(p.commission_paid) }} | ${{ "%.2f"|format(p.net_payout) }} | {{ "{:,}".format(p.calls_7d) }} | {{ "{:,}".format(p.calls_30d) }} | {{ "{:,}".format(p.total_calls) }} | {{ "%.1f"|format(p.avg_latency) }} ms | {{ "%.1f"|format(p.success_rate) }}% |