{% extends "base.html" %} {% load static %} {% block content %}



{% if messages %} {% endif %} {% if question_list is None %}
You've Already taken the quiz, please come tomorrow for other questions!
{% else %}
{% csrf_token %}
{{ question_list.0.question | safe }}
{{ question_list.0.option_1 }}
{{ question_list.0.option_2 }}
{{ question_list.0.option_3 }}
{{ question_list.0.option_4 }}



{{ question_list.1.question | safe }}
{{ question_list.1.option_1 }}
{{ question_list.1.option_2 }}
{{ question_list.1.option_3 }}
{{ question_list.1.option_4 }}


{% endif %}
{% endblock %}