{% extends "base.html" %} {% block title %}Audit explorer · KarmaSakshi Control Center{% endblock %} {% block content %}
Append-only evidence

Audit explorer

Search only within your authenticated organization’s hash-chained journal.

{{ "Chain verified" if verified else "Verification failed" }}
{% if events %}
{% for event in events %} {% endfor %}
Sequence / timeEventDecisionManifest / actorTransition
#{{ event.sequence }}
{{ event.timestamp.strftime("%Y-%m-%d %H:%M:%S") }}
{{ event.event_type }}
{{ event.event_hash[:20] }}…
{{ event.decision }} {{ (event.manifest_id or "—")[:12] }}
{{ event.actor_id or "system" }}
{{ event.from_state or "—" }}{% if event.to_state %} → {{ event.to_state }}{% endif %}
{% else %}
No audit events matched this organization-scoped search.
{% endif %}
{% endblock %}