{# Rendered JSONL events page (opened from the slideover's "View JSONL events for this probe" evidence link). Replaces the raw text/event-stream dump the link used to open in a new tab. The route (_collect_jsonl_records) pretty- prints each record server-side; a tiny dependency-free highlighter colors keys / strings / numbers / bools / null client-side. ``rec.pretty`` is autoescaped inside
(safe); the highlighter reads textContent, re-escapes, then wraps tokens in spans — so no markup injection from operator-untrusted event payloads. #}JSONL events · {{ scan_id }}{% if probe %} · {{ probe }}{% endif %} {% if records %} JSONL events
scan
{{ scan_id }}{% if probe %} · probe{{ probe }}{% endif %}{{ records|length }} event{{ '' if records|length == 1 else 's' }}{% if probe %} for this probe{% endif %}
{% for rec in records %}{% endfor %} {% else %} {{ rec.kind }} {% if rec.seq is not none %}{% endif %}{{ rec.pretty }}No JSONL events found{% if probe %} for this probe{% endif %}.
{% endif %}