blob: 05e80a87b47c18ab804921d91f83134076b086dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<h2> {{ question.summary }} </h2>
<p>{{ question.question }} </p>
{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
<form action="/exam/{{ question.id }}/check/" method="post">
{% csrf_token %}
<textarea rows="20" cols="100" name="answer">
# Enter your answer here.
</textarea>
<br/>
<input type="submit" name="check" value="Check Answer" />
<input type="submit" name="skip" value="Skip question" />
</form>
<p> You have {{quiz.questions_left}} question(s) left. </p>
|