templates/open_quiz.html
author nishanth
Wed, 21 Apr 2010 13:20:42 +0530
changeset 31 27aa6ee92aca
parent 25 4143a8f90b00
child 34 8d0d82c981b3
permissions -rw-r--r--
we shall not track db files since they are changed often. we shall maintain a .bak file which is db file and rename it appropriately before we start using the app.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
     2
{% block content %}
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
     3
	{% if success %}
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
     4
		The quiz has been successfully opened.
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
     5
	{% else %}
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
     6
	Select the quiz to open.
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
     7
	<form action="" method="post">
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
     8
	<select name="quiz_num">
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
     9
	<option value="11">Day 1 Quiz 1</option>
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
    10
	<option value="12">Day 1 Quiz 2</option>
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
    11
	<option value="21">Day 2 Quiz 1</option>
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
    12
	</select>
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
    13
	<input type="submit" value="Open">
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
    14
	</form>
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
    15
	{% endif %}
4143a8f90b00 added open quiz functionality
nishanth
parents:
diff changeset
    16
{% endblock %}