{% extends "base.html" %} {% block title %}QC Report - {{ report.filename }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

QC Report

Back to HM QC
{{ '%.0f' % report.score if report.score is not none else '-' }}
{{ report.status | upper }}
Filename {{ report.filename }}
Job Number {{ report.job_number or '-' }}
Date {{ report.created_at.strftime('%Y-%m-%d %H:%M:%S') if report.created_at }}
{% if html_content %}
Detailed Report
{% else %}
Report file not found on disk. The report may have been generated before the current deployment.
{% endif %}
{% endblock %}