]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/tracker-torrents.html
Import of new website.
[ipfire.org.git] / www / templates / tracker-torrents.html
CommitLineData
940227cb 1{% extends "base-1.html" %}
81675874 2
7b5f2910
MT
3{% block title %}{{ _("Torrent Downloads") }}{% end block %}
4
81675874 5{% block content %}
6 <div class="post">
7 <a name="latest"></a>
8 <h3>{{ _("IPFire Torrent Tracker") }}</h3>
44dcf59f
MT
9
10 <img src="{{ static_url("images/page_icons/download-torrents.png") }}"
11 class="floatTR" border="0" alt="{{ _("IPFire Torrent Tracker") }}" />
6aa6e1dd
MT
12
13 {% if lang == "de" %}
14 <p>
940227cb 15 Auf dieser Seite findet man eine Liste aller Releases, die
6aa6e1dd
MT
16 über den IPFire-Torrent-Tracker verteilt werden.
17 <p>
18 <p>
19 Das Torrentnetz ist ein Netzwerk, welches Dateien durch verteilte
20 Downloads schnell verbreitet. IPFire nutzt dieses System um
21 Downloads der Distributionsimages bereitzustellen.
22 </p>
23 <p>
d91fbc4e 24 Mehr Informationen zu Torrent-Netzwerken gibt es in der
6aa6e1dd
MT
25 <a href="http://de.wikipedia.org/wiki/BitTorrent"
26 target="_blank">Wikipedia</a>.
27 </p>
28 {% else %}
29 <p>
30 This page displays a list of files that are tracked by the
31 IPFire torrent tracker.
32 <p>
33 <p>
34 The bittorrent protocol transfers large files by a distributed
35 technology. IPFire uses this system to spread the distribution's
36 files.
37 </p>
38 <p>
39 Get more information on the bittorrent protocol on
40 <a href="http://en.wikipedia.org/wiki/BitTorrent_(protocol)"
41 target="_blank">Wikipedia</a>.
42 </p>
43 {% end %}
81675874 44
940227cb 45 <br class="clear" />
8c235120 46
81675874 47 <table class="download-torrents">
48 <tr>
49 <th>{{ _("Release") }}</th>
940227cb
MT
50 <th class="seeds">{{ _("Seeders") }}</th>
51 <th class="peers">{{ _("Peers") }}</th>
81675874 52 </tr>
940227cb 53 {% for torrent in torrents %}
81675874 54 <tr>
940227cb
MT
55 <td><a href="torrent/{{ torrent.hash }}">{{ torrent.name }}</a></td>
56 <td class="seeds">{{ torrent.seeds }}</td>
57 <td class="peers">{{ torrent.peers }}</td>
81675874 58 </tr>
59 {% end %}
60 </table>
81675874 61
62 <br class="clear" />
63 </div>
81675874 64{% end block %}