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

event verification

{{ verifications | length }} events

Each event's signature is verified via regista's cryptographic verification. Unverified events may indicate a missing or revoked signing key.

{% if verifications %}
{% for v in verifications %} {% endfor %}
when transition work item actor status principal fingerprint 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.fingerprint[:32] if v.fingerprint else '—' }}{% if v.fingerprint %}…{% endif %} {{ v.scheme or '—' }}
{% else %}
no events
recent events with verification status will appear here
{% endif %}
back to evidence
{% endblock %}