{% extends "base.html" %} {% block title %}{{ run.short_id }} — RecallLab{% endblock %} {% block tagline %}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{{ run.status_upper }} {{ run.contract_id }}
provider={{ run.provider }} · started {{ run.started_at_human }} {% if run.duration_ms is not none %} · {{ "%.1f"|format(run.duration_ms) }} ms total {% endif %}
{% if run.failed_reason %}
{{ run.failed_reason }}
{% endif %}
{% if run.capability_skips %}

Capability gates

{% for cs in run.capability_skips %}
{{ cs.capability }} — {{ cs.reason }}
{% endfor %} {% endif %}

Events ({{ run.events|length }})

{% if run.events %} {% for ev in run.events %} {% endfor %}
# kind payload latency ms
{{ ev.sequence }} {{ ev.kind }} {{ ev.payload_summary }} {% if ev.latency_ms is not none %}{{ "%.2f"|format(ev.latency_ms) }}{% else %}—{% endif %}
{% else %}

No events recorded for this run.

{% endif %} {% endblock %}