]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/downloads-mirrors.html
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / downloads-mirrors.html
1 {% extends "base-1.html" %}
2
3 {% block title %}{{ _("Mirror-Server") }}{% end block %}
4
5 {% block body %}
6 <div class="post">
7 <a name="latest"></a>
8 <h3>{{ _("IPFire Mirrors") }}</h3>
9
10 {% if lang == "de" %}
11 <p>
12 Diese Seite zeigt eine Liste der Mirror-Server des IPFire-Projektes.
13 </p>
14
15 <p>
16 Bei einem Download wird einer der Server zufällig aus der Liste
17 gewählt und der User umgeleitet.
18 </p>
19
20 <ul>
21 <li>
22 <a href="http://wiki.ipfire.org/{{ lang }}/project/web"
23 target="_blank">Wie stelle ich selbst einen Mirror-Server bereit?</a>
24 </li>
25 </ul>
26 {% else %}
27 <p>
28 This page is an overview about our mirror servers.
29 </p>
30
31 <p>
32 When a user downloads a file, one of the servers is arbitrarily
33 choosen und the user gets reditected.
34 </p>
35
36 <ul>
37 <li>
38 <a href="http://wiki.ipfire.org/{{ lang }}/project/web"
39 target="_blank">How do I contribute a mirror server?</a>
40 </li>
41 </ul>
42 {% end %}
43 <br class="clear" />
44
45 <table class="download-mirrors">
46 <tr>
47 <th>{{ _("Owner") }}</th>
48 <th>{{ _("Hostname") }}</th>
49 <th>{{ _("Location") }}</th>
50 <th>{{ _("Last update") }}</th>
51 <th>&nbsp;</th>
52 </tr>
53 {% for mirror in mirrors %}
54 <tr class="{{ mirror.state.lower() }}">
55 <td>{{ mirror.owner }}</td>
56 <td><a href="{{ mirror.url }}" target="_blank">{{ mirror.hostname }}</a></td>
57 <td>
58 <img src="{{ static_url("images/flags/%s.png" % mirror.country_code) }}"
59 align="absmiddle" alt="{{ mirror.country_code }}" />
60 {{ mirror.location }}
61 </td>
62 <td>{{ locale.format_date(mirror.last_update) }}</td>
63 <td><a href="{{ mirror.id }}">{{ _("details") }}</a></td>
64 </tr>
65 {% end %}
66 </table>
67
68 <br class="clear" />
69 </div>
70
71 {% end block %}