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

{% trans "Survey Analytics Reports" %}

{% trans "Comprehensive survey performance analysis with statistical insights" %}

{% trans "Enhanced Reports" %}
{% trans "Total" %}
{{ stats.total }}
{% trans "Reports" %}
JSON
{{ stats.json }}
{% trans "Reports" %}
HTML
{{ stats.html }}
{% trans "Reports" %}
{% trans "Markdown" %}
{{ stats.markdown }}
{% trans "Reports" %}

{% trans "Available Reports" %}

{% if reports %}
{% for report in reports %} {% endfor %}
{% trans "Filename" %} {% trans "Type" %} {% trans "Size" %} {% trans "Created" %} {% trans "Actions" %}
{{ report.filename }}
{% if report.type == 'json' %} JSON {% elif report.type == 'html' %} HTML {% elif report.type == 'markdown' %} Markdown {% else %} {{ report.type|title }} {% endif %} {{ report.size_human }}
{{ report.created_date|date:"M d, Y" }}
{{ report.created_date|time:"H:i" }}
{% csrf_token %}
{% else %}

{% trans "No Reports Found" %}

{% trans "Generate your first comprehensive survey analytics report." %}

{% endif %}
{% endblock %}