]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/downloads-torrents.html
Create a global webapp database connection and create a config class.
[people/shoehn/ipfire.org.git] / www / templates / downloads-torrents.html
CommitLineData
81675874 1{% extends "base.html" %}
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>
d91fbc4e 15 Auf dieser Seite findet man eine Liste fast aller Dateien, 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
8c235120
JPT
45 <br class="clear" />
46
47
81675874 48 <table class="download-torrents">
49 <tr>
50 <th>{{ _("Release") }}</th>
51 <th>{{ _("File") }}</th>
44dcf59f
MT
52 <th class="seeds">S</th>
53 <th class="peers">P</th>
81675874 54 <th>&nbsp;</th>
55 </tr>
56 {% for release in releases %}
57 <tr>
58 <td>{{ release.name }}</td>
6aa6e1dd
MT
59 <td>{{ release.torrent.file[:-8] }}</td>
60 <td class="seeds">{{ hashes[release.torrent.hash]["seeds"] }}</td>
61 <td class="peers">{{ hashes[release.torrent.hash]["peers"] }}</td>
62 <td class="download">
63 <a href="{{ release.torrent.url }}">{{ _("Download file") }}</a>
81675874 64 </td>
65 </tr>
66 {% end %}
67 </table>
68
69 <p class="right">
70 {{ _("Got that information from <em>%s</em> within %.2f second(s).") % (tracker, request_time) }}
71 </p>
72
73 <br class="clear" />
74 </div>
81675874 75{% end block %}