{% extends "base.html" %} {% block title %}Compare Scans — Stratum{% endblock %} {% block content %}

Scan Comparison

Drift analysis between two compliance scan results.

← Scan History
{% if job and baseline %}
Current
{{ job.grade or '?' }}
{{ '%.1f%%' % job.score_pct if job.score_pct is not none else '—' }}
{{ (job.image_id or job.target_host or '—')[:32] }}
{{ job.updated_at.strftime('%Y-%m-%d') if job.updated_at else '' }}
Baseline
{{ baseline.grade or '?' }}
{{ '%.1f%%' % baseline.score_pct if baseline.score_pct is not none else '—' }}
{{ (baseline.image_id or baseline.target_host or '—')[:32] }}
{{ baseline.updated_at.strftime('%Y-%m-%d') if baseline.updated_at else '' }}
Computing drift…
{% else %}
One or both scan jobs could not be found.
{% endif %}
{% endblock %}