]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/tracker-torrents.html
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / 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 <p>
12 Dies ist der IPFire Torrent Tracker.
13 </p>
14 <p>
15 Er wird für das verteilen der IPFire-Downloads gebraucht
16 und tut das effizient mit Hilfe des Bittorrent-Protokols.
17 </p>
18 {% else %}
19 <p>
20 This is the home of the IPFire torrent tracker.
21 </p>
22 <p>
23 This tracker is used to distribute the IPFire
24 downloads in an efficient way with help of the Bittorrent
25 protocol.
26 </p>
27 {% end %}
28
29 <table class="table table-striped">
30 <thead>
31 <tr>
32 <th>{{ _("Release") }}</th>
33 <th>{{ _("Seeders") }}</th>
34 <th>{{ _("Peers") }}</th>
35 <th>&nbsp;</th>
36 </tr>
37 </thead>
38 <tbody>
39 {% for release in releases %}
40 <tr>
41 <td colspan="4">
42 <h3>{{ release.name }}</h3>
43 </td>
44 </tr>
45
46 {% for torrent in release.torrents %}
47 <tr>
48 <td>
49 <a href="/{{ torrent.torrent_hash }}">{{ torrent.basename }}</a>
50 </td>
51 <td>
52 {{ torrent.seeders }}
53 </td>
54 <td>
55 {{ torrent.peers }}
56 </td>
57 <td>
58 <a href="{{ torrent.magnet_link }}">
59 <i class="glyphicon glyphicon-magnet"></i>
60 </a>
61 <a href="http://tracker.ipfire.org/{{ torrent.torrent_hash }}/download">
62 <i class="glyphicon glyphicon-download-alt"></i>
63 </a>
64 </td>
65 </tr>
66 {% end %}
67 {% end %}
68 </tbody>
69 </table>
70 {% end block %}