{% extends "base.html" %} {% block title %}Audit log{% endblock %} {% block content %}

Audit log

Append-only, hash-chained record of every CRA action.

{% if view.ok %} Chain intact {{ view.entries_count }} entries {% else %} Chain broken at entry {{ view.bad_line }} {{ view.reason }} {% endif %} Re-verify
{% if view.entries %}
{% for entry in view.entries %}
{{ entry.actor }} {{ entry.summary }} {{ entry.ts_iso }}
entry {{ entry.entry_hash[:12] }}… {% if entry.is_genesis %}(chain start){% else %}prev {{ entry.prev_hash[:12] }}…{% endif %}
{% endfor %}
{% else %}

No audit log entries yet.

{% endif %}

"Tamper-evident" means any edit to a past entry breaks the chain and is detected here. It cannot stop a fully-privileged attacker who rewrites the whole file and every hash after it — keep the log on append-only / off-host storage for that threat.

{% endblock %}