{% set ic = icon_for(row['tool']) %} {% set redacted = row['redactions_applied_json'] is not none %} {% set enforcement = row['enforcement'] %} {% set redactions = row['redactions_applied_json'] | from_json or [] %} {% set tab = active_tab or 'body' %} {% set known_tabs = ['body', 'headers', 'redactions', 'allow', 'export'] %} {% if tab not in known_tabs %}{% set tab = 'body' %}{% endif %}
{{ row['tool'] or 'Unknown' }} #{{ '%06d' % row['id'] }} · {{ row['ts'] | ago }}
{{ row['method'] }} {{ row['host'] }} {{ row['path'] }}
size{{ row['req_bytes'] | bytes }} sha{{ (row['body_hash'][:8] + '…') if row['body_hash'] else '—' }} status {% if enforcement == 'blocked' %} blocked · 403, not sent {% elif enforcement == 'flagged' %} flagged · off-allowlist, forwarded {% elif redacted %} redacted · forwarded {% else %} forwarded {{ row['status'] or '' }} {% endif %}
Body Headers{{ headers | length }} Redactions{% if redactions %}{{ redactions | length }}{% endif %} Allowlist Export
{% if tab == 'body' %} {% include "partials/tabs/body.html" %} {% elif tab == 'headers' %} {% include "partials/tabs/headers.html" %} {% elif tab == 'redactions' %} {% include "partials/tabs/redactions.html" %} {% elif tab == 'allow' %} {% include "partials/tabs/allowlist.html" %} {% elif tab == 'export' %} {% include "partials/tabs/export.html" %} {% endif %}