templates/list_toppers.html
author nishanth
Tue, 29 Jun 2010 11:47:53 +0530
changeset 60 8ca2734bdc99
parent 42 007d87112911
child 70 911a24ae80d6
permissions -rw-r--r--
modified the seed_que to suit the new design

{% extends 'base.html' %}
{% block content %}
List of toppers for {{quiz_name}} of {{event.title}}<br />
<br />
<table cellspacing="5" cellpadding="3">
	<tr align="center">
			<td> Name </td>
			<td> Profession </td>
			<td> Score </td>
	</tr>
	{% for quiz in sorted_quizzes %}
	<tr align="center">
			<td><a href="/quiz/user_dump/{{admin_key}}/{{quiz.key}}/{{quiz.user.username}}">{{quiz.user.get_full_name}}</a></td>
			<td>{{quiz.user.get_profile.profession}}</td>
			<td>{{quiz.score}}</td>
	</tr>
	{% endfor %}
{% endblock %}