{% extends "base.html" %} {% block title %}Jobs — relay dashboard{% endblock %} {% block content %}
{% if search or status_filter or provider_filter %} Clear {% endif %}
{% for job in jobs %} {% else %} {% endfor %}
Name Provider Model Status Progress Cost (est.) Created
{{ job.name or job.id[:8] + '…' }} {% if job.project %}
{{ job.project }}
{% endif %}
{{ job.provider or '—' }} {{ job.model or '—' }} {{ job.status }} {% set pct = ((job.completed_requests or 0) / (job.total_requests or 1) * 100) | round | int %}
{{ job.completed_requests or 0 }} / {{ job.total_requests or 0 }}
${{ "%.4f" | format(job.estimated_cost_usd or 0) }} {{ job.created_at or '—' }} View
No jobs found. {% if search or status_filter or provider_filter %} Clear filters {% endif %}
{% if total_pages > 1 %} {% endif %} {% endblock %}