{%extends 'base2.html'%} {%block head%} {%endblock%} {%block title%} {{testName}} {%endblock%} {%block body%}
    {% csrf_token %} {% for question, options in questions.items %}
  1. Question : {{ question }}
  2. {% for option in options %} {{ option.2 }}
    {% endfor %} {% endfor %}
{%endblock%}