Run #{{ run.id }}
{{ run.status }}
{% if run.current_phase and run.status == 'running' %}
{{ run.current_phase }}
{% endif %}
{{ run.created_at[:16] }}
{% if run.stats %}
{{ run.stats.total_discrepancies or 0 }} discrepancies
({{ run.stats.by_severity.critical or 0 }}C / {{ run.stats.by_severity.important or 0 }}I / {{ run.stats.by_severity.minor or 0 }}m)
{% endif %}
{% if run.error %}
{{ run.error[:100] }}
{% endif %}