]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/tracker-torrents.html
Fix tracker.ipfire.org.
[people/shoehn/ipfire.org.git] / templates / tracker-torrents.html
CommitLineData
940227cb 1{% extends "base-1.html" %}
81675874 2
7b5f2910
MT
3{% block title %}{{ _("Torrent Downloads") }}{% end block %}
4
60024cc8
MT
5{% block body %}
6 <div class="page-header">
7 <h1>{{ _("IPFire Torrent Tracker") }}</h1>
8 </div>
9
10 {% if lang == "de" %}
938d083d
MT
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>
60024cc8
MT
18 {% else %}
19 <p>
20 This is the home of the IPFire torrent tracker.
938d083d
MT
21 </p>
22 <p>
60024cc8
MT
23 This tracker is used to distribute the IPFire
24 downloads in an efficient way with help of the Bittorrent
25 protocol.
26 </p>
60024cc8
MT
27 {% end %}
28
938d083d
MT
29 <table class="table table-striped">
30 <thead>
81675874 31 <tr>
32 <th>{{ _("Release") }}</th>
938d083d
MT
33 <th>{{ _("Seeders") }}</th>
34 <th>{{ _("Peers") }}</th>
35 <th>&nbsp;</th>
81675874 36 </tr>
938d083d
MT
37 </thead>
38 <tbody>
39 {% for release in releases %}
81675874 40 <tr>
938d083d
MT
41 <td colspan="4">
42 <h3>{{ release.name }}</h3>
43 </td>
81675874 44 </tr>
938d083d
MT
45
46 {% for torrent in release.torrents %}
47 <tr>
48 <td>
49 <a href="/{{ torrent.torrent_hash }}">{{ torrent.basename }}</a>
50 </td>
51 <td>
6d524cba 52 {{ torrent.seeders }}
938d083d
MT
53 </td>
54 <td>
6d524cba 55 {{ torrent.peers }}
938d083d
MT
56 </td>
57 <td>
58 <a href="{{ torrent.magnet_link }}">
b11c673b 59 <i class="glyphicon glyphicon-magnet"></i>
938d083d
MT
60 </a>
61 <a href="http://tracker.ipfire.org/{{ torrent.torrent_hash }}/download">
b11c673b 62 <i class="glyphicon glyphicon-download-alt"></i>
938d083d
MT
63 </a>
64 </td>
65 </tr>
66 {% end %}
81675874 67 {% end %}
938d083d
MT
68 </tbody>
69 </table>
81675874 70{% end block %}