]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/modules/tracker-peerlist.html
Import of new website.
[ipfire.org.git] / www / templates / modules / tracker-peerlist.html
CommitLineData
940227cb
MT
1<table class="tracker-peerlist">
2 <tr>
3 <th>&nbsp;</th>
4 <th>&nbsp;</th>
5 <th>Hostname</th>
6 </tr>
7 {% for peer in peers %}
8 <tr>
9 <td class="ip">{{ peer.ip }}</td>
10 <td><img src="{{ static_url("images/flags/" + peer.country_code + ".png") }}"
11 alt="{{ peer.country_code }}" /></td>
12 <td>{{ peer.hostname or "---" }}</td>
13 </tr>
14 {% end %}
15</table>