{% extends "base.html" %} {% set active = "audit" %} {% block title %}audit · vouch review{% endblock %} {% block content %}

audit timeline

{{ count }} review decisions
{% if not rows %}

no review decisions yet — the timeline lights up as proposals are approved or rejected.

{% else %}
    {% for row in rows %}
  1. {{ row.event }} by {{ row.actor }}
    {% if row.object_ids %}
    {% for oid in row.object_ids %}{{ oid }}{% endfor %}
    {% endif %} {% if row.reason %}

    {{ row.reason }}

    {% endif %}
  2. {% endfor %}
{% endif %}
{% endblock %}