]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/downloads-mirrors.html
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / downloads-mirrors.html
CommitLineData
940227cb 1{% extends "base-1.html" %}
3add293a 2
3a8da18e
JPT
3{% block title %}{{ _("Mirror-Server") }}{% end block %}
4
60024cc8 5{% block body %}
3add293a
MT
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 %}
8c235120 43 <br class="clear" />
3add293a
MT
44
45 <table class="download-mirrors">
46 <tr>
940227cb
MT
47 <th>{{ _("Owner") }}</th>
48 <th>{{ _("Hostname") }}</th>
3add293a 49 <th>{{ _("Location") }}</th>
feb02477 50 <th>{{ _("Last update") }}</th>
940227cb 51 <th>&nbsp;</th>
3add293a 52 </tr>
940227cb
MT
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>
3add293a 57 <td>
940227cb
MT
58 <img src="{{ static_url("images/flags/%s.png" % mirror.country_code) }}"
59 align="absmiddle" alt="{{ mirror.country_code }}" />
60 {{ mirror.location }}
3add293a 61 </td>
940227cb
MT
62 <td>{{ locale.format_date(mirror.last_update) }}</td>
63 <td><a href="{{ mirror.id }}">{{ _("details") }}</a></td>
3add293a
MT
64 </tr>
65 {% end %}
3add293a
MT
66 </table>
67
68 <br class="clear" />
69 </div>
70
71{% end block %}