{% extends "layout.html" %} {% block title %}TrueNAS Burn-In — Job #{{ job.id }}{% endblock %} {% block content %}
Print / Export
Drive
Device {{ job.devname }}
Model {{ job.model or '—' }}
Serial {{ job.serial or '—' }}
Size {{ job.size_bytes | format_bytes }}
Job
Profile {{ job.profile }}
State {{ job.state }}
Operator {{ job.operator or '—' }}
Created {{ job.created_at | format_dt_full }}
Started {{ job.started_at | format_dt_full }}
Finished {{ job.finished_at | format_dt_full }}
Duration {{ job.duration_seconds | format_duration }}
{% if job.error_text %} {% endif %}

Stages

{% for s in job.stages %} {% endfor %}
Stage State Started Duration Error
{{ s.stage_name.replace('_', ' ').title() }} {{ s.state }} {{ s.started_at | format_dt_full }} {{ s.duration_seconds | format_duration }} {% if s.error_text %} {{ s.error_text }} {% else %}—{% endif %}
{% endblock %}