Drive
Device {{ job.devname }}
Model {{ job.model or '—' }}
Serial {{ job.serial or '—' }}
Size {{ job.size_bytes | format_bytes }}
Job
Profile {{ job.profile | title }}
Operator {{ job.operator or '—' }}
Started {{ job.started_at | format_dt_full }}
Finished {{ job.finished_at | format_dt_full }}
Duration {{ job.duration_seconds | format_duration }}
{% if job.error_text %}
✕ {{ job.error_text }}
{% endif %}

Stages

{% for s in job.stages %} {% endfor %}
Stage Result Duration Notes
{{ s.stage_name.replace('_', ' ').title() }} {{ s.state | upper }} {{ s.duration_seconds | format_duration }} {{ s.error_text or '—' }}