{% extends "studentLayout.html" %} {% block content %}

Class Test 1

Section A: Multiple Choice Questions
{% if mcq_questions %} {% for mcq in mcq_questions %}
{{ mcq.option_A }}
{{ mcq.option_B }}
{{ mcq.option_C }}
{{ mcq.option_D }}
{% endfor %} {% else %}

No MCQ questions available for this test.

{% endif %}
Section B: Fill the Blank
{% if fib_questions %} {% for fib in fib_questions %}
{% endfor %} {% else %}

No Fill-in-the-Blank questions available for this test.

{% endif %}
{% endblock content %}