{% extends "base.html" %} {% from "_macros.html" import agent_chip, model_chip, score_view_toggle %} {% block title %}{{ run_id }} · all tasks · SForge{% endblock %} {% block content %} {% set any_score = task_blocks|selectattr("has_score")|list|length > 0 %}
← runs / {{ run_id }} {{ agent_chip(agent) }} {{ model_chip(model) }} {{ task_count }} task(s)
{# ── Global controls ── #}
{% if any_score %}{{ score_view_toggle() }}{% endif %}
{{ task_blocks|length }} chart(s)
{# ── Mini chart grid ── #} {% if task_blocks %}
{% for block in task_blocks %}
Loading chart...
{% endfor %}
{% else %}
This run has no submissions to chart.
{% endif %} {% endblock %}