]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/tracker-torrent-detail.html
Website update.
[people/shoehn/ipfire.org.git] / www / templates / tracker-torrent-detail.html
1 {% extends "base-1.html" %}
2
3 {% block title %}{{ _("Torrent Downloads") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>{{ _("IPFire Torrent Tracker") }}</h1>
8 </div>
9
10 <table class="download-torrent-detail">
11 <tr>
12 <td>{{ _("Release") }}</td>
13 <td>
14 <a href="http://downloads.ipfire.org/release/{{ release.id }}">{{ release.name }}</a>
15 </td>
16 </tr>
17 <tr>
18 <td>{{ _("Hash") }}</td>
19 <td>{{ release.torrent_hash }}</td>
20 </tr>
21 </table>
22
23 <hr>
24
25 {% if torrent.peers %}
26 <h3>{{ _("Peers") }}</h3>
27 {{ modules.TrackerPeerList(torrent.peers, percentages=True) }}
28 {% end %}
29
30 {% if torrent.seeds %}
31 <h3>{{ _("Seeds") }}</h3>
32 {{ modules.TrackerPeerList(torrent.seeds) }}
33 {% end %}
34 {% end block %}