{% 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 Reports" %}

{{ stats.total }}

{% trans "JSON Reports" %}

{{ stats.json }}

{% trans "HTML Reports" %}

{{ stats.html }}

{% trans "Markdown Reports" %}

{{ stats.markdown }}

{% 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:"Y-m-d H:i:s" }}
{% csrf_token %}
{% else %}
{% trans "No reports found" %}

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

{% endif %}
{% endblock %}