{{ grid.shown }} of {{ grid.total }} rollouts
{% if grid.rows.is_empty() %}No rollouts match the current filters.
{% else %}| task | {% for lane in grid.lanes %}{{ lane }} | {% endfor %}avg | |
|---|---|---|---|
| {{ row.label }} | {% for cell in row.cells %} {% match cell %} {% when Some(c) %}{{ c.outcome_label }} {% if !c.grade_text.is_empty() %}{{ c.grade_text }}{% endif %} {% if c.hacking %}RH{% endif %} | {% when None %}— | {% endmatch %} {% endfor %}{% if row.avg_text.is_empty() %}—{% else %}{{ row.avg_text }}{% endif %} |