mirror of
https://github.com/jlengrand/twidersite.git
synced 2026-03-10 08:51:21 +00:00
16 lines
351 B
HTML
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 %} |