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

evidence

{{ summaries | length }} projects

Integrity and verification data from regista's signed event log. The UI renders verdicts from regista's replay — it does not recompute cryptographic results.

{% for summary in summaries %}

{{ summary.project_slug }}

chain integrity
{% if summary.chain_intact %} intact {% else %} broken {% endif %}
verified events
{{ summary.verified_events }}
unverified events
{% if summary.unverified_events > 0 %} {{ summary.unverified_events }} {% else %} 0 {% endif %}
total events
{{ summary.total_events }}
last verified
{{ format_timestamp(summary.last_verified_at) }}
{% if summary.findings %} {% endif %}
{% endfor %}

recent event verifications

{% if verifications %}
{% for v in verifications %} {% endfor %}
when transition work item actor verified principal scheme
{{ format_timestamp(v.timestamp) }} {{ v.transition or '—' }} {{ v.work_item_id[:8] }}… {{ v.actor_id }} {% if v.verified %} verified {% else %} unverified {% endif %} {{ v.principal_id or '—' }} {{ v.scheme or '—' }}
{% else %}
no events to verify
recent events with verification status will appear here
{% endif %}
full integrity report event verification list
{% endblock %}