{% extends "base.html" %} {% block title %}integrity report — dossier{% endblock %} {% block content %}

integrity report

{{ reports | length }} projects

Full replay results from regista's integrity check. The chain is intact when replayed drift is zero.

{% if reports %} {% for report in reports %}

{{ report.project_slug }}

chain status
{% if report.chain_intact %} intact {% else %} drift detected {% endif %}
replayed ok
{{ report.replayed_ok }}
replayed drift
{% if report.replayed_drift > 0 %} {{ report.replayed_drift }} {% else %} 0 {% endif %}
halted
{{ report.halted }}
warnings
{{ report.warnings }}
{% endfor %} {% else %}
no integrity data
replay results from connected projects will appear here
{% endif %}
back to evidence
{% endblock %}