]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/modules/release-item.html
Website update.
[people/shoehn/ipfire.org.git] / www / templates / modules / release-item.html
1 <h2>
2 {% if latest %}{{ _("Latest release") }}:{% end %}
3 {{ escape(release.name) }}
4 </h2>
5
6 <br>
7
8 {% if release.files %}
9 <div class="tabbable">
10 <ul class="nav nav-tabs">
11 <li class="active">
12 <a href="#arch_unknown" data-toggle="tab">{{ _("Choose an architecture:") }}</a>
13 </li>
14 {% if files["i586"] %}
15 <li><a href="#arch_i586" data-toggle="tab">i586</a></li>
16 {% end %}
17 {% if files["arm"] %}
18 <li><a href="#arch_arm" data-toggle="tab">ARM</a></li>
19 {% end %}
20 </ul>
21
22 <div class="tab-content">
23 <div class="tab-pane active" id="arch_unknown">
24 {{ modules.DownloadButton(release) }}
25
26 {% if lang == "de" %}
27 <p>
28 Bitte klicke auf den Buttom um IPFire für
29 i586-kompatible Computer als ISO-Installationsimage
30 herunterzuladen.
31 Dies ist das am häufigsten benötigte Medium.
32 </p>
33 <p>
34 In der Tableiste finden sich alternative Architekturen
35 und Imageformate zum Download.
36 </p>
37 {% else %}
38 <p>
39 Please click the button to download the IPFire
40 ISO image for i586-compatible computers.
41 This is the default image, you will most likely
42 need to install IPFire.
43 </p>
44 <p>
45 You may also pick your desired architecture from
46 the tabs above and see a list of all image
47 formats.
48 </p>
49 {% end %}
50
51 {% if release.stable == "N" %}
52 <div class="alert alert-info">
53 {% if lang == "de" %}
54 Dieses Release ist nicht als <em>stabile</em> Version
55 von IPFire freigegeben und nur für Testumgebungen gedacht.
56 Daher sollte dieses Release nicht in produktiven
57 Umgebungen eingesetzt werden und Fehler berichtet werden.
58 {% else %}
59 This release is not a stable version of IPFire and
60 intended for testing purposes only.
61 Do not use this release in production and please
62 report any bugs.
63 {% end %}
64 </div>
65 {% end %}
66 </div>
67
68 {% for arch in files.keys() %}
69 <div class="tab-pane" id="arch_{{ arch }}">
70 <!-- {% if lang == "de" %}
71 {% if arch == "i586" %}
72 <p>
73 Diese Images sind für den Einsatz auf Intel-kompatiblen
74 Systemen gedacht. Dazu gehört die gesamte Klasse der
75 x86er Systeme ab Pentium I.
76 </p>
77 {% end %}
78 {% else %}
79 {% if arch == "i586" %}
80 <p>
81 These images are built for Intel-compatible systems.
82 This is the entire class of x86 CPUs since Intel
83 Pentium I.
84 </p>
85 {% end %}
86 {% end %} -->
87
88 <table class="table table-striped table-bordered">
89 <thead>
90 <tr>
91 <th>{{ _("Image type") }}</th>
92 <th>{{ _("Size") }}</th>
93 </tr>
94 </thead>
95 <tbody>
96 {% for file in files[arch] %}
97 <tr>
98 <td>
99 <a class="download-splash" href="{{ file.url }}">{{ _(file.desc) }}</a>
100 <br>{{ _(file.rem) }}
101 </td>
102 <td>
103 {{ format_size(file.size) }}
104 </td>
105 </tr>
106 {% end %}
107 </tbody>
108 </table>
109 </div>
110 {% end %}
111 </div>
112 </div>
113 {% else %}
114 <div class="alert">
115 {{ _("There are no downloads available for this release.") }}
116 </div>
117 {% end %}