]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/tracker-torrents.html
Add torrent and magnet links for all downloads.
[people/shoehn/ipfire.org.git] / www / templates / tracker-torrents.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 {% if lang == "de" %}
11
12
13 {% else %}
14 <p>
15 This is the home of the IPFire torrent tracker.
16 This tracker is used to distribute the IPFire
17 downloads in an efficient way with help of the Bittorrent
18 protocol.
19 </p>
20 <p>
21 The Bittorrent protocol transfers large files from one
22 peer to an other without need to download data from
23 a central server. However, there is a server which is
24 called the tracker that enables the clients to talk to
25 each other.
26 </p>
27 {% end %}
28
29 <table class="download-torrents">
30 <tr>
31 <th>{{ _("Release") }}</th>
32 <th class="seeds">{{ _("Seeders") }}</th>
33 <th class="peers">{{ _("Peers") }}</th>
34 </tr>
35 {% for torrent in torrents %}
36 <tr>
37 <td><a href="torrent/{{ torrent.hash }}">{{ torrent.name }}</a></td>
38 <td class="seeds">{{ torrent.seeds }}</td>
39 <td class="peers">{{ torrent.peers }}</td>
40 </tr>
41 {% end %}
42 </table>
43 {% end block %}