Files
twidersite/static/tmpl.html
2013-02-03 18:00:12 +00:00

17 lines
347 B
HTML

<h1>My leaderboard<h1>
{% for hashtags, members in items %}
<h2>{{hashtags}}<h2>
<table border="1">
{% for rank, author, count in members %}
<tr>
<td>{{rank}}</td>
<td>{{author}}</td>
<td>{{count}}</td>
</tr>
{% endfor %}
</table>
{% endfor %}