{% extends "base.html" %} {% block title %} Answer question {% endblock %} {% block css %} {% endblock %} {% block script %} {% endblock script %} {% block onload %} onload="update_time();setSnippetHeight()" {% endblock %} {% block pagetitle %}
You have {{ paper.questions_left }} question(s) left in {{ quiz_name }}
{% endblock %} {% block content %}

Online Test

{% csrf_token %}

{{ question.summary }} (Marks : {{ question.points }})


{{ question.description|safe }} {% if error_message %}
{% for e in error_message.splitlines %} {{ e|join:"" }}
{% endfor%}
{% endif %} {% if success_msg %} {% endif %}

{% csrf_token %} {% if question.type == "mcq" %} {% for option in question.options.strip.splitlines %} {{option}}
{% endfor %} {% else %}
{% endif %} {% if question.type == "mcq" %}
   {% else %}    {% endif %}
{% endblock content %}