{% extends "base.html" %}{% from "_macros.html" import status_pill %} {% block title %}Traffic {{ t.id }}{% endblock %} {% block main %}

#{{ t.id }} {{ t.method }} {{ t.url }} {{ status_pill(t.status) }}

{{ t.direction }} · {{ t.peer }} · {{ t.ts }} · {{ t.duration_ms }} ms · correlation {{ t.correlation_id }}{% if t.run_id %} · run {{ t.run_id }}{% endif %}

{% if t.note %}

Note

{{ t.note }}
{% endif %}

Request

Headers

{{ t.req_headers|pretty }}

Body

{{ (t.req_body or '(empty)')|pretty }}

Response

Headers

{{ t.resp_headers|pretty }}

Body

{{ (t.resp_body or '(empty)')|pretty }}
{% endblock %}