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

16 lines
351 B
HTML

<h1>Twitter 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 %}