{% extends "base.html" %} {% block title %}Admin – {{ app_title }}{% endblock %} {% block content %}

Admin Dashboard

Upload Quiz
{% if stats %}
{% for s in stats %} {% endfor %}
Quiz Attempts Users Avg % Best % Worst %
{{ s.quiz_name }} {{ s.attempt_count or 0 }} {{ s.unique_users or 0 }} {{ s.avg_score_pct if s.avg_score_pct is not none else "–" }} {{ s.best_score_pct if s.best_score_pct is not none else "–" }} {{ s.worst_score_pct if s.worst_score_pct is not none else "–" }} View
{% else %}

No quizzes yet. Upload one to get started.

{% endif %}
{% endblock %}