{% extends "base.html" %}{% from "_macros.html" import run_pill %} {% block title %}{{ r.name }}{% endblock %} {% block main %}

{{ r.name }} {{ run_pill(r.status) }}

{{ r.description }}
peer {{ r.peer }} · run {{ r.run_id }} · {{ '%.1f'|format(r.duration_ms / 1000) }}s · {{ r.started }} · traffic for this run

{% for s in r.steps %} {% endfor %}
#StepStatusDetails
{{ s.index }}{{ s.name }}
{{ s.kind }} · {{ s.duration_ms|int }} ms
{{ run_pill(s.status) }} {% if s.message %}
{{ s.message }}
{% endif %} {% for c in s.checks %}
{{ '✓' if c.ok else '✗' }} {{ c.check }} → {{ c.detail|string|truncate(240) }}
{% endfor %} {% if s.traffic_ids %}
traffic: {% for t in s.traffic_ids[:30] %}{{ t }} {% endfor %}
{% endif %}
{% endblock %}