]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/modules/release-item.html
Import of new website.
[people/shoehn/ipfire.org.git] / www / templates / modules / release-item.html
CommitLineData
940227cb
MT
1{% if release.files %}
2 <h3>{{ release.name }}</h3>
3
4 <!--
5 {% for file in release.files %}
6 {% if file.type == "iso" %}
7 <div class="bigdownload">
8 <a href="{{ file.url }}">
9 {{ _("Begin download") }}<br />{{ release.name }}
10 </a>
11 </div>
12 {% end %}
13 {% end %}
14 -->
15
16 {% if release.stable == "N" %}
17 <p class="warning">
18 <strong>{{ _("Beware!") }}</strong>
19 {{ _("<em>%s</em> was not released yet and so it is not recommended for production use.") % release.name }}
20 </p>
21 {% end %}
22
23 <table class="download">
24 {% for file in release.files %}
25 <tr class="{{ file.type }}">
26 <td class="icon">
27 <img src="{{ static_url("images/download_type_%s.png" % file.type) }}"
28 alt="{{ file.type }}" />
29 </td>
30 <td class="link">
31 <a href="{{ file.url }}">{{ _(file.desc) }}</a>
32 </td>
33 <td>
34 {{ _(file.rem) }}
35 </td>
36 </tr>
81675874 37 {% end %}
940227cb
MT
38
39 <tr>
40 <td colspan="3">
41 &nbsp;
42 </td>
43 </tr>
44<!-- <tr>
45 <td colspan="3">
46 <p>
47 {{ _("With starting the download you accept the <a href=\"/download/legal\">legal terms</a>.") }}
48 </p>
49 </td>
50 </tr>
51 <tr>
52 <td colspan="3">
53 &nbsp;
54 </td>
55 </tr>
56-->
57 <tr>
58 <td colspan="3">
59 <p>{{ _("Checksums") }} (SHA1):</p>
60 <pre>{% for file in release.files %}{{ file.sha1 }} {{ file.filename }}{{ "\n" }}{% end %}</pre>
61 </td>
62 </tr>
63 </table>
81675874 64
65 <br class="clear" />
940227cb
MT
66
67{% else %}
68 <p>{{ _("There are no downloads available for this release.") }}</p>
69{% end %}