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

{{ quiz.title }}

{% if quiz.description %}

{{ quiz.description }}

{% endif %}
{{ quiz.quiz_type.upper() }} {{ questions|length }} questions
{% for question in questions %}

Question {{ loop.index }} {{ question.question_type.upper() }}

{{ question.question_text }}

{% if question.question_type == 'mcq' %}
{% for option in question.get_options() %} {% endfor %}
{% elif question.question_type == 'qa' %}
{% endif %}
{% endfor %}
{% endblock %}