{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Survey Analytics Dashboard" %} - PX360{% endblock %} {% block content %}
{% trans "Real-time insights and metrics for your surveys" %}
| {% trans "Metric" %} | {% trans "Value" %} |
|---|---|
| {% trans "Total Surveys Sent" %} | {{ analytics_data.total_sent }} |
| {% trans "Surveys Opened" %} | {{ analytics_data.total_opened }} |
| {% trans "Surveys Completed" %} | {{ analytics_data.total_completed }} |
| {% trans "Surveys Abandoned" %} | {{ analytics_data.total_abandoned }} |
| {% trans "Average Time to Complete" %} | {{ analytics_data.avg_completion_time|floatformat:1 }}s |
| {% trans "Negative Survey Rate" %} | {{ analytics_data.negative_rate|floatformat:1 }}% |
{% trans "Choose a survey template above to view detailed analytics and metrics." %}