]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/download-mirror-detail.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / www / templates / download-mirror-detail.html
1 {% extends "base.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 <table class="download-mirror-detail">
11 <tr>
12 <td>{{ _("Hostname") }}</td>
13 <td><a href="{{ mirror.url }}">{{ mirror.hostname }}</a></td>
14 </tr>
15 <tr>
16 <td>{{ _("Owner") }}</td>
17 <td>{{ mirror.owner }}</td>
18 </tr>
19 <tr>
20 <td>{{ _("Last update") }}</td>
21 <td>{{ locale.format_date(mirror.last_update) }}</td>
22 </tr>
23 <tr>
24 <td>{{ _("Number of files") }}</td>
25 <td>{{ len(mirror.filelist) }}</td>
26 </tr>
27 </table>
28
29 <br class="clear" />
30
31 <p>
32 <a href="all">{{ _("View list of all mirror servers.") }}</a>
33 </p>
34 </div>
35
36 {% end block %}