]> git.ipfire.org Git - ipfire.org.git/blobdiff - www/templates/downloads-mirrors.html
Move everything to the root of the repository.
[ipfire.org.git] / www / templates / downloads-mirrors.html
diff --git a/www/templates/downloads-mirrors.html b/www/templates/downloads-mirrors.html
deleted file mode 100644 (file)
index c5e4a2b..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-{% extends "base-1.html" %}
-
-{% block title %}{{ _("Mirror-Server") }}{% end block %}
-
-{% block body %}
-       <div class="post">
-               <a name="latest"></a>
-               <h3>{{ _("IPFire Mirrors") }}</h3>
-               
-               {% if lang == "de" %}
-                       <p>
-                               Diese Seite zeigt eine Liste der Mirror-Server des IPFire-Projektes.
-                       </p>
-
-                       <p>
-                               Bei einem Download wird einer der Server zufällig aus der Liste
-                               gewählt und der User umgeleitet.
-                       </p>
-                       
-                       <ul>
-                               <li>
-                                       <a href="http://wiki.ipfire.org/{{ lang }}/project/web"
-                                               target="_blank">Wie stelle ich selbst einen Mirror-Server bereit?</a>
-                               </li>
-                       </ul>
-               {% else %}
-                       <p>
-                               This page is an overview about our mirror servers.
-                       </p>
-
-                       <p>
-                               When a user downloads a file, one of the servers is arbitrarily
-                               choosen und the user gets reditected.
-                       </p>
-                       
-                       <ul>
-                               <li>
-                                       <a href="http://wiki.ipfire.org/{{ lang }}/project/web"
-                                               target="_blank">How do I contribute a mirror server?</a>
-                               </li>
-                       </ul>
-               {% end %}
-               <br class="clear" />
-               
-               <table class="download-mirrors">
-                       <tr>
-                               <th>{{ _("Owner") }}</th>
-                               <th>{{ _("Hostname") }}</th>
-                               <th>{{ _("Location") }}</th>
-                               <th>{{ _("Last update") }}</th>
-                               <th>&nbsp;</th>
-                       </tr>
-                       {% for mirror in mirrors %}
-                               <tr class="{{ mirror.state.lower() }}">
-                                       <td>{{ mirror.owner }}</td>
-                                       <td><a href="{{ mirror.url }}" target="_blank">{{ mirror.hostname }}</a></td>
-                                       <td>
-                                               <img src="{{ static_url("images/flags/%s.png" % mirror.country_code) }}"
-                                                        align="absmiddle" alt="{{ mirror.country_code }}" />
-                                               {{ mirror.location }}
-                                       </td>
-                                       <td>{{ locale.format_date(mirror.last_update) }}</td>
-                                       <td><a href="{{ mirror.id }}">{{ _("details") }}</a></td>
-                               </tr>
-                       {% end %}
-               </table>
-
-               <br class="clear" />
-       </div>
-
-{% end block %}