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 %}