]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/tracker-torrents.html
Create a global webapp database connection and create a config class.
[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 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 {% if lang == "de" %}
14 <p>
15 Auf dieser Seite findet man eine Liste aller Releases, die
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>
24 Mehr Informationen zu Torrent-Netzwerken gibt es in der
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 %}
44
45 <br class="clear" />
46
47 <table class="download-torrents">
48 <tr>
49 <th>{{ _("Release") }}</th>
50 <th class="seeds">{{ _("Seeders") }}</th>
51 <th class="peers">{{ _("Peers") }}</th>
52 </tr>
53 {% for torrent in torrents %}
54 <tr>
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>
58 </tr>
59 {% end %}
60 </table>
61
62 <br class="clear" />
63 </div>
64 {% end block %}