{{ run.status }}
{% if run.stage %}{{ run.stage }}{% endif %}
{% if run.total %}{{ run.index }} / {{ run.total }}{% endif %}
{% if run.eta_s is not none %}{{ tr("ETA") }} {{ run.eta_s | round(0) | int }}s{% endif %}
{# The resolved profile and decoder knobs the run actually executes with
(post-precedence), so a finished run is explainable at a glance. #}
{% if run.profile %}{{ run.profile }}{% endif %}
{% if run.knobs %}
{{ tr("resolved knobs") }}
{% for name, value in run.knobs.items() %}{{ name }}={{ value }}{% endfor %}
{% endif %}
{# The CLI's own `--auto` / `--backend auto` explanation, reused verbatim. #}
{% for explanation in run.explanations %}
{{ explanation }}
{% endfor %}
{% if run.message %}{{ run.message }}
{% endif %}
{% if run.error %}{{ run.error }}
{% endif %}