Files
edx-platform/lms/templates/folditchallenge.html
2013-02-25 18:18:46 -05:00

17 lines
321 B
HTML

<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>