{% extends "base.html" %} {% block title %}runs — bench dashboard{% endblock %} {% block content %}
{{ experiments_dir }}
{% if runs.is_empty() %}| run | date | envs | lanes | outcomes | pass rate | rubrics | reports |
|---|---|---|---|---|---|---|---|
| {{ run.id }} | {{ run.date }} | {{ run.envs }} | {{ run.lanes }} | {{ run.outcomes }} |
{% if run.pass_pct.is_empty() %}—
{% else %}
{{ run.pass_rate }}
{% endif %}
|
{{ run.rubric_badge.label }} | {% if run.reports.is_empty() %}— {% else %}{% for r in run.reports %}{{ r.abbr }}{% endfor %}{% endif %} |