{% extends "base.html" %} {% import "_macros.html" as m %} {% block title %}Trace {{ t.record.id }}{% endblock %} {% block content %}
{{ t.record.id }} · {{ t.record.kind }} · recorded {{ t.record.recorded_at }} by {{ m.actor_badge(t.record.actor) }}
This record is part of the approval workflow itself.
{% endif %}Current version: {% if t.current_version %}{{ m.record_link(t.current_version) }}{% else %}voided{% endif %}
{% elif t.matched_by is defined %}{% if t.matched_by %}Accounted for by {{ m.record_link(t.matched_by) }}{% else %}not yet matched{% endif %}
{% elif t.cited_by_operations is defined %}{{ t.lines | length }} statement lines; cited by {{ t.cited_by_operations | length }} operations.
{% else %}No later records refer to this one.
{% endif %} {% if t.notes %}{{ t.record | tojson(indent=2) }}