{% if question.question_type == 'matching' %} {% include 'partials/matching_question.html' %} {% else %} {# Regular MCQ/SCQ template #} {% csrf_token %}
{{ question.text }}
{% for option in question.options.all %}
{{ option.letter }} {{ option.text }}
{% endfor %}
{% endif %}