]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/download-mirror-detail.html
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / download-mirror-detail.html
CommitLineData
940227cb
MT
1{% extends "base.html" %}
2
3{% block title %}{{ _("Mirror-Server") }}{% end block %}
4
60024cc8 5{% block body %}
940227cb
MT
6 <div class="post">
7 <a name="latest"></a>
8 <h3>{{ _("IPFire Mirrors") }}</h3>
940227cb
MT
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 %}