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

Provider Growth Dashboard

{{ providers|length }} provider{{ 's' if providers|length != 1 else '' }} with activity
Total Providers
{{ summary.total_providers }}
Total Revenue
${{ "%.2f"|format(summary.total_revenue) }}
Total Commission
${{ "%.2f"|format(summary.total_commission) }}
{% if growth_trend %}

Provider Growth Trend (New Registrations per Week)

{% for week in growth_trend %}
{{ week.week }}
{{ week.new_providers }}
new provider{{ 's' if week.new_providers != 1 else '' }}
{% endfor %}
{% endif %}

Per-Provider Breakdown

{% if providers %} {% for p in providers %} {% endfor %}
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) }}%
{% else %}
No provider data available
{% endif %}
{% endblock %}