{% extends "base.html" %} {% block content %}
{% if error %}

{{ error }}

{% else %}

File Information

Filename: {{ file_info.filename }}
Size: {{ "%.1f" | format(file_info.size / 1024) }} KB
Modified: {{ file_info.modified | timestamp_format }}
JSON Valid: {{ 'Yes' if is_valid_json else 'No' }}
{% if is_valid_json %}
Traces: {{ trace_count }}
Spans: {{ span_count }}
{% endif %}
{% if parse_error %}

JSON Parse Error: {{ parse_error }}

{% endif %}

Content

{% if is_valid_json and trace_count > 0 %} {% endif %}
{% if is_valid_json and trace_count > 0 %}
{% else %}
{{ raw_content }}
{% endif %}
{% endif %}
{% endblock %}