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 %}
-
{{ row.event }}
by {{ row.actor }}
{% if row.object_ids %}
{% for oid in row.object_ids %}{{ oid }}{% endfor %}
{% endif %}
{% if row.reason %}
{{ row.reason }}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}