From bed96635b1b0aac8548b6df85e96ee256e5e5bcb Mon Sep 17 00:00:00 2001 From: Prabhu Ramachandran Date: Tue, 8 Nov 2011 15:29:48 +0530 Subject: BUG: Fixing various issues - Modified the question model to use description instead of question. - Once a user completes the exam it would not allow another one to start. - Improved the error messages displayed on errors. - If there is a mistake, it doesn't wipe out the old attempt so student can modify what they submitted last. --- templates/exam/question.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'templates/exam') 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 @@
{{ question.question }}
+{{ question.description }}
{% if error_message %}{{ error_message }}
{% endif %} @@ -8,7 +8,7 @@ {% csrf_token %}You have {{quiz.questions_left}} question(s) left.
\ No newline at end of file +You have {{quiz.questions_left}} question(s) left.
-- cgit