templates/user_dump.html
changeset 51 80df28feac72
parent 44 ffc035725a4e
--- a/templates/user_dump.html	Thu Apr 22 12:17:21 2010 +0530
+++ b/templates/user_dump.html	Thu Apr 22 12:31:29 2010 +0530
@@ -12,7 +12,7 @@
 		{% for ans in quiz.que_answered.all %}
 		<tr>
 				<td><a href="/quiz/que_dump/{{admin_key}}/{{ans.question.id}}">{{ans.question.description|slice:":50"}}</a></td>
-				<td>{{ans.submitted_ans}}</td>
+				<td><pre>{{ans.submitted_ans}}</pre></td>
 				<td><input name="{{ans.question.id}}" type="checkbox" {% if ans.is_correct %}checked="yes"{%endif%}></td>
 		</tr>
 		{% endfor %}