{% extends "elearning.html" %} {% load staticfiles %} {% block headtitle %}Exam - {{ course }} - {{ block.super }}{% endblock %} {% block headstyle %} {% endblock %} {% block content %}
45:00
{% csrf_token %} {% if question.tutorial %}

{{ question.tutorial }}

{% endif%} {% if question.get_type == "MCQ" %} {% with mcq=question.get_mcq %} {% for option in mcq.get_option_list %} {% endfor %} {% endwith %} {% endif %} {% if question.get_type == "Gap" %} {% with gap=question.get_gap gap_option_submissions=question_submission.get_gap_option_submissions %}

{% for option in gap.get_options %} {{ option.pre_text }} {% endfor %} {{ gap.post_text}}

{% endwith %} {% endif %} {% for option in question.get_option_list %} {% endfor %}
{% endblock %} {% block footerscript %} {% endblock %}