{% extends 'base.html' %} {% block title %}Audit Dashboard - {{ APP_VERSION }}{% endblock %} {% block content %}

Audit Dashboard

Integritätsstatus der Audit-Chain und letzte Audit-Ereignisse (max. 200 Einträge).

Audit Review exportieren (Markdown) Audit Review exportieren (JSON)
Chain Status
{% if verify_result.ok %}
OK
{% else %}
FEHLER
{% endif %}
Einträge
{{ verify_result.count }}
Letzter Index
{{ verify_result.last_chain_index }}
Mismatch Count
{{ verify_result.mismatches|length }}
{% if verify_result.mismatches %}

Integritätsabweichungen

{% for m in verify_result.mismatches %} {% endfor %}
Index Typ Expected Found
{{ m.chain_index }} {{ m.error }} {{ m.expected }} {{ m.found }}
{% endif %}

Letzte Audit-Ereignisse

{% for row in audit_rows %} {% endfor %}
Index Zeit Event Actor Hash Payload
{{ row.chain_index }} {{ row.timestamp or row.created_at }} {{ row.event_type }} {{ row.actor }} {{ row.entry_hash }}
{{ row.payload }}
{% endblock %}