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