]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/modules/tracker-peerlist.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / www / templates / modules / tracker-peerlist.html
1 <table class="table table-striped">
2 <thead>
3 <tr>
4 <th>&nbsp;</th>
5 <th>Hostname</th>
6 </tr>
7 </thead>
8 <tbody>
9 {% for peer in peers %}
10 <tr>
11 <td>
12 <img src="{{ static_url("images/flags/" + peer.country_code + ".png") }}"
13 alt="{{ peer.country_code }}" />
14 {{ peer.ip }}
15 </td>
16 <td>{{ peer.hostname or "---" }}</td>
17 </tr>
18 {% end %}
19 </tbody>
20 </table>