summaryrefslogtreecommitdiff
path: root/templates/exam/question.html
diff options
context:
space:
mode:
authorPrabhu Ramachandran2011-11-17 21:52:21 +0530
committerPrabhu Ramachandran2011-11-17 21:52:21 +0530
commit3d9a6bc68e5fbf9093a7ea926c7431e93775d8d3 (patch)
tree5fa8d75aa8661f07fbbd39d0dc182b4a3d729b7f /templates/exam/question.html
parent9f674808a5681a0380531ff62079b94874641c1e (diff)
downloadonline_test-3d9a6bc68e5fbf9093a7ea926c7431e93775d8d3.tar.gz
online_test-3d9a6bc68e5fbf9093a7ea926c7431e93775d8d3.tar.bz2
online_test-3d9a6bc68e5fbf9093a7ea926c7431e93775d8d3.zip
ENH/BUG: Showing number of marks and fixing bug.
The check view was not showing the quiz description.
Diffstat (limited to 'templates/exam/question.html')
-rw-r--r--templates/exam/question.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/exam/question.html b/templates/exam/question.html
index 9ea27c4..fe27e8f 100644
--- a/templates/exam/question.html
+++ b/templates/exam/question.html
@@ -48,9 +48,11 @@ function update_time()
{% block onload %} onload="update_time()" {% endblock %}
{% block content %}
-<h2> {{ question.summary }} </h2>
+<h3> {{ question.summary }} </h3>
-<p>{{ question.description }} </p>
+<p>{{ question.description }}
+<br/>
+(Marks: {{ question.points }}) </p>
{% if error_message %}<p><strong>ERROR:</strong></p><pre>{{ error_message }}</pre>{% endif %}