templates/open_quiz.html
changeset 25 4143a8f90b00
child 34 8d0d82c981b3
equal deleted inserted replaced
24:2368bb63ee39 25:4143a8f90b00
       
     1 {% extends 'base.html' %}
       
     2 {% block content %}
       
     3 	{% if success %}
       
     4 		The quiz has been successfully opened.
       
     5 	{% else %}
       
     6 	Select the quiz to open.
       
     7 	<form action="" method="post">
       
     8 	<select name="quiz_num">
       
     9 	<option value="11">Day 1 Quiz 1</option>
       
    10 	<option value="12">Day 1 Quiz 2</option>
       
    11 	<option value="21">Day 2 Quiz 1</option>
       
    12 	</select>
       
    13 	<input type="submit" value="Open">
       
    14 	</form>
       
    15 	{% endif %}
       
    16 {% endblock %}