{% extends parent %} {% block title %}Raw Data - Introspect{% endblock %} {% block content %}

Raw Data

{{ total }} records · {{ columns|length }} columns · unfiltered JSONL

{% if filter_session or filter_type %} Clear {% endif %}
{% for record in records %}
Record {{ (page - 1) * 20 + loop.index }} of {{ total }}
{% for field in record %}
{{ field.column }}
{% if field.long %} {{ field.preview|e }} {% else %} {{ field.value }} {% endif %}
{% endfor %}
{% endfor %} {% if total == 0 %}
No records found.
{% endif %} {% if total_pages > 1 %} {% endif %}
{% endblock %}