{% extends 'base.html' %} {% block content %}

Edit Quiz: {{ quiz.title }}

Back to Quizzes

Quiz Details

{{ form.csrf_token }}
{{ form.title(class="input input-bordered w-full") }} {% for error in form.title.errors %}

{{ error }}

{% endfor %}
{{ form.description(class="textarea textarea-bordered w-full", rows=3) }} {% for error in form.description.errors %}

{{ error }}

{% endfor %}
{{ form.quiz_type(class="select select-bordered w-full") }} {% for error in form.quiz_type.errors %}

{{ error }}

{% endfor %}

Questions ({{ questions|length }})

{% if questions %}
{% for question in questions %}
{{ question.question_type.upper() }}

{{ question.question_text }}

{% if question.question_type == 'mcq' %}

Options:

    {% for option in question.get_options() %}
  • {{ option }}{% if option == question.correct_answer %} (Correct){% endif %}
  • {% endfor %}
{% elif question.question_type == 'qa' %}

Expected Answer:

{{ question.expected_answer }}

{% endif %}
{% endfor %}
{% else %}

No questions added yet. Click "Add Question" to get started.

{% endif %}
{% endblock %}