author | nishanth |
Tue, 29 Jun 2010 12:37:09 +0530 | |
changeset 64 | ba80a1b3b187 |
parent 42 | 007d87112911 |
child 70 | 911a24ae80d6 |
permissions | -rw-r--r-- |
41 | 1 |
{% extends 'base.html' %} |
2 |
{% block content %} |
|
3 |
List of toppers for {{quiz_name}} of {{event.title}}<br /> |
|
4 |
<br /> |
|
5 |
<table cellspacing="5" cellpadding="3"> |
|
6 |
<tr align="center"> |
|
7 |
<td> Name </td> |
|
8 |
<td> Profession </td> |
|
9 |
<td> Score </td> |
|
10 |
</tr> |
|
11 |
{% for quiz in sorted_quizzes %} |
|
12 |
<tr align="center"> |
|
42
007d87112911
created a user_dump page that shows all the answers entered by user at one place
nishanth
parents:
41
diff
changeset
|
13 |
<td><a href="/quiz/user_dump/{{admin_key}}/{{quiz.key}}/{{quiz.user.username}}">{{quiz.user.get_full_name}}</a></td> |
41 | 14 |
<td>{{quiz.user.get_profile.profession}}</td> |
15 |
<td>{{quiz.score}}</td> |
|
16 |
</tr> |
|
17 |
{% endfor %} |
|
18 |
{% endblock %} |