{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{{ filename }} - {% trans "Survey Analytics Report" %} - PX360{% endblock %} {% block content %}

{{ filename }}

{% trans "Type" %}: {{ report_type|upper }} | {% trans "Size" %}: {{ size_human }} | {% trans "Created" %}: {{ created_date|date:"Y-m-d H:i:s" }}

{% trans "View" %} {% trans "Download" %} {% trans "Back to Reports" %}
{% trans "Report Information" %}
{% trans "Filename" %}: {{ filename }}
{% trans "Format" %}: {% if report_type == 'json' %} JSON {% elif report_type == 'markdown' %} Markdown {% else %} {{ report_type|title }} {% endif %}
{% trans "Size" %}: {{ size_human }}
{% trans "Created" %}: {{ created_date|date:"Y-m-d H:i:s" }}
{% trans "Last Modified" %}: {{ modified_date|date:"Y-m-d H:i:s" }}
{% trans "File Format Details" %}
{% if report_type == 'json' %}
JSON Format

Structured data format suitable for programmatic access and API integration. Can be imported into data analysis tools or custom applications.

Recommended Viewers:
  • Any text editor
  • JSON formatters/validators
  • Data analysis tools
{% elif report_type == 'markdown' %}
Markdown Format

Plain text formatting syntax. Lightweight and readable, perfect for documentation and version control systems.

Recommended Viewers:
  • Any text editor
  • Markdown previewers
  • GitHub/GitLab renderers
{% else %}
Unknown Format

This report format is not recognized. Please download the file to view its contents.

{% endif %}
{% trans "Actions" %}
{% endblock %}