templates/que_dump.html
author nishanth
Fri, 02 Jul 2010 14:12:25 +0530
changeset 87 e81b105b1128
parent 51 80df28feac72
permissions -rw-r--r--
found easier way to get things done. so removed all the junk code.

{% extends 'base.html' %}
{% block content %}
List of answers submitted for {{quiz_name}}<br />
<br />
{{question.description|linebreaksbr}}<br /><br />
<fieldset><pre>{{question.code}}</pre></fieldset>
<br />
Answers Submitted:<br />
<form action="" method="post">
<table cellspacing="5" cellpadding="3">
		<tr>
				<td>User</td>
				<td>Submitted Answer</td>
				<td> Is Correct</td>
		</tr>
	
		{% for ans in answers %}
		<tr>
				<td>{{ans.quiz.all.0.user.get_full_name}}</td>
				<td><pre>{{ans.submitted_ans}}</pre></td>
				<td><input name="{{ans.id}}" type="checkbox" {% if ans.is_correct %}checked="yes"{%endif%}></td>
		</tr>
		{% endfor %}
</table><br />
		<input type="submit" value="save">
</form>
{% endblock %}