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