{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block extra_styles %}{% endblock %} {% block content %}
| # | {{ metric_name }} | Duration | Status |
|---|---|---|---|
| {{ loop.index }} | {% if run.metric is not none %} {{ "%.4f"|format(run.metric) }} {% else %} — {% endif %} | {{ run.get("duration_s", "—") }}s | {% if run.get("success") %}OK{% else %}{{ run.get("error", "failed") }}{% endif %} |