Files
edx-platform/lms/templates/folditchallenge.html
2013-07-31 19:39:15 -04:00

19 lines
404 B
HTML

<%! from django.utils.translation import ugettext as _ %>
<div class="folditchallenge">
<h3>${_("Puzzle Leaderboard")}</h3>
<table>
<tr>
<th>${_("User")}</th>
<th>${_("Score")}</th>
</tr>
% for pair in top_scores:
<tr>
<td>${pair[0]}</td>
<td>${pair[1]}</td>
</tr>
% endfor
</table>
</div>