diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/exam/question.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/exam/question.html b/templates/exam/question.html index 05e80a8..896a8aa 100644 --- a/templates/exam/question.html +++ b/templates/exam/question.html @@ -1,6 +1,6 @@ <h2> {{ question.summary }} </h2> -<p>{{ question.question }} </p> +<p>{{ question.description }} </p> {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %} @@ -8,7 +8,7 @@ {% csrf_token %} <textarea rows="20" cols="100" name="answer"> -# Enter your answer here. +{% if last_attempt %}{{last_attempt}}{% else %}# Enter your answer here.{% endif %} </textarea> <br/> @@ -17,4 +17,4 @@ <input type="submit" name="skip" value="Skip question" /> </form> -<p> You have {{quiz.questions_left}} question(s) left. </p>
\ No newline at end of file +<p> You have {{quiz.questions_left}} question(s) left. </p> |