]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/downloads-torrents.html
Initial checkin.
[people/shoehn/ipfire.org.git] / www / templates / downloads-torrents.html
CommitLineData
81675874 1{% extends "base.html" %}
2
3{% block content %}
4 <div class="post">
5 <a name="latest"></a>
6 <h3>{{ _("IPFire Torrent Tracker") }}</h3>
7
8 <p>
9 {{ _("This is the latest version of the IPFire firewall distribution.") }}
10 Need to fill in some more text at this place.
11 </p>
12
13 <table class="download-torrents">
14 <tr>
15 <th>{{ _("Release") }}</th>
16 <th>{{ _("File") }}</th>
17 <th>S</th>
18 <th>P</th>
19 <th>&nbsp;</th>
20 </tr>
21 {% for release in releases %}
22 <tr>
23 <td>{{ release.name }}</td>
24 <td>{{ release.torrent.file }}</td>
25 <td>{{ hashes[release.torrent.hash].get("seeds", _("N/A")) }}</td>
26 <td>{{ hashes[release.torrent.hash].get("peers", _("N/A")) }}</td>
27 <td>
28 <a href="{{ release.torrent.url }}">
29 <img src="{{ static_url("images/download_torrent.png") }}" alt="{{ _("Download") }}" />
30 </a>
31 </td>
32 </tr>
33 {% end %}
34 </table>
35
36 <p class="right">
37 {{ _("Got that information from <em>%s</em> within %.2f second(s).") % (tracker, request_time) }}
38 </p>
39
40 <br class="clear" />
41 </div>
42
43{% end block %}