{% extends "base.html" %} {% block title %}{{ quiz_name }} – Admin{% endblock %} {% block content %}
← Dashboard

{{ quiz_name }}

{{ question_count }} question{{ "s" if question_count != 1 }} · {{ attempts | length }} attempt{{ "s" if attempts | length != 1 }}

{# ---------- Question-by-question analytics ---------- #} {% if question_stats %}

Question Difficulty

Sorted by hardest first — questions most people got wrong are at the top.

{% for qs in question_stats %} {% endfor %}
Q# Question Correct Accuracy
{{ qs.num }} {{ qs.question_text }} {{ qs.correct_count }} / {{ qs.total_attempts }}
{{ qs.correct_pct }}%
{{ qs.correct_answers | join(", ") }}
{% endif %} {# ---------- Submissions table ---------- #}

Submissions

{% if attempts %}
{% for a in attempts %} {% endfor %}
User Score % Completed
{{ a.full_name }} {{ a.score }} / {{ a.total }} {{ a.score_pct }}% {{ a.completed_at }} View
{% else %}

No attempts yet for this quiz.

{% endif %}
{% endblock %}