templates/user_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 by {{quiz.user.get_full_name}} for {{quiz_name}} of {{event.title}}<br />
<form action="" method="post">
<table cellspacing="5" cellpadding="3">
		<tr>
				<td>Question</td>
				<td>Submitted Answer</td>
				<td> Is Correct</td>
		</tr>
	
		{% 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><pre>{{ans.submitted_ans}}</pre></td>
				<td><input name="{{ans.question.id}}" type="checkbox" {% if ans.is_correct %}checked="yes"{%endif%}></td>
		</tr>
		{% endfor %}
</table><br />
		<input type="submit" value="save">
</form>
{% endblock %}