]> git.ipfire.org Git - ipfire.org.git/blame - templates/modules/tracker-peerlist.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / modules / tracker-peerlist.html
CommitLineData
60024cc8
MT
1<table class="table table-striped">
2 <thead>
940227cb 3 <tr>
60024cc8
MT
4 <th>&nbsp;</th>
5 <th>Hostname</th>
940227cb 6 </tr>
60024cc8
MT
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>
940227cb 20</table>