]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/tracker-torrent-detail.html
Import of new website.
[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 content %}
6 <div class="post">
7 <a name="latest"></a>
8 <h3>{{ _("IPFire Torrent Tracker") }}</h3>
9
10 <!-- <img src="{{ static_url("images/page_icons/download-torrents.png") }}"
11 class="floatTR" border="0" alt="{{ _("IPFire Torrent Tracker") }}" /> -->
12
13 <table class="download-torrent-detail">
14 <tr>
15 <td>{{ _("Release") }}</td>
16 <td>
17 <a href="http://downloads.ipfire.org/release/{{ release.id }}">{{ release.name }}</a>
18 </td>
19 </tr>
20 <tr>
21 <td>{{ _("Hash") }}</td>
22 <td>{{ release.torrent_hash }}</td>
23 </tr>
24 </table>
25
26 {% if torrent.peers %}
27 <h4>{{ _("Peers") }}</h4>
28 {{ modules.TrackerPeerList(torrent.peers, percentages=True) }}
29 {% end %}
30
31 {% if torrent.seeds %}
32 <h4>{{ _("Seeds") }}</h4>
33 {{ modules.TrackerPeerList(torrent.seeds) }}
34 {% end %}
35
36 <br class="clear" />
37
38 <p>
39 <a href="/">{{ _("See list of all torrents on this tracker.") }}</a>
40 </p>
41 </div>
42 {% end block %}
43