{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}Quiz Builder — {{ course.name }}{% endblock %} {% if user.is_teacher %}{% block nav_teacher_courses %}active{% endblock %} {% else %}{% block nav_courses %}active{% endblock %}{% endif %} {% block content %}
Quiz Settings
{% csrf_token %} {% crispy quiz_form %}
{% if quiz %}

Quiz Stats

Questions
{{ quiz.question_count }}
Total Attempts
{{ quiz.attempts.count }}
Max Attempts
{% if quiz.max_attempts == 0 %}Unlimited{% else %}{{ quiz.max_attempts }}{% endif %}
Pass Score
{{ quiz.pass_score }}%
{% endif %}
{% if not quiz %}

Save quiz settings first, then add questions.

{% else %}
Questions {{ questions|length }}
Add Question
{% if questions %}
    {% for q in questions %}
  • {{ forloop.counter }}

    {{ q.question_text }}

      {% for choice in q.choices.all %}
    • {% if choice.is_correct %} {{ choice.choice_text }} {% else %} {{ choice.choice_text }} {% endif %}
    • {% endfor %}
    {% csrf_token %}
  • {% endfor %}
{% else %}

No questions yet.

Add First Question
{% endif %}
{% if quiz.attempts.count > 0 %}
Student Attempts
{% regroup quiz.attempts.all by student as student_attempts %} {% for group in student_attempts %} {% with last=group.list.0 count=group.list|length %} {% endwith %} {% endfor %}
Student Score Result Date Attempts
{{ group.grouper.get_full_name }} {{ last.score }}% {% if last.passed %} Passed {% else %} Failed {% endif %} {{ last.completed_at|date:"d M Y" }} {{ count }}{% if quiz.max_attempts > 0 %}/{{ quiz.max_attempts }}{% endif %}
{% csrf_token %}
{% endif %} {% endif %}
{% endblock %}