{% extends 'base.html' %} {% load static %} {% load form_tags %} {% block title %}Analytics - {{ form.title }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Form Analytics

{{ form.title }}

View Responses Edit Form

Export Analytics Report

Generate comprehensive analytics reports in various formats

{{ total_responses|default:0 }}

Total Responses

{{ total_views|default:0 }}

Total Views

{{ completion_rate|default:0|floatformat:1 }}%

Completion Rate

{{ avg_response_time|default:"N/A" }}

Avg. Response Time

{% if total_responses > 0 %}
Responses Over Time
Response Sources
Field Analytics
{% for field_stat in field_analytics %}
{{ field_stat.field.label }}
{{ field_stat.field.get_field_type_display }}
Response Rate
{{ field_stat.response_rate|floatformat:1 }}%
{{ field_stat.total_responses }}
responses
{% if field_stat.choice_distribution %}
Choice Distribution:
{% for choice, count in field_stat.choice_distribution.items %}
{{ choice }}
{{ count }}
{% endfor %}
{% endif %} {% if field_stat.avg_value %}
Average
{{ field_stat.avg_value|floatformat:2 }}
Minimum
{{ field_stat.min_value }}
Maximum
{{ field_stat.max_value }}
{% endif %}
{% empty %}

No field analytics available yet.

{% endfor %}
Response Timeline
Period Responses Growth
Today {{ responses_today }} {{ growth_today }}%
This Week {{ responses_week }} {{ growth_week }}%
This Month {{ responses_month }} {{ growth_month }}%
User Insights
{{ registered_users_count }}
Registered Users
{{ anonymous_users_count }}
Anonymous Users
User Type Distribution
{% else %}

No Analytics Data Yet

Start collecting responses to see detailed analytics and insights.

Share this URL to start collecting responses
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}