]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/admin-mirrors.html
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / admin-mirrors.html
CommitLineData
940227cb
MT
1{% extends "admin-base.html" %}
2
3{% block content %}
4 <div id="post">
5 <h3>{{ _("Mirror Administrator") }}</h3>
6
7 <p>
8 <a href="/mirrors/create">{{ _("Create new mirror") }}</a> |
9 <a href="/mirrors/update">{{ _("Re-check now") }}</a>
10 </p>
11
12 <table>
13 <tr>
14 <th>{{ _("Hostname") }}</th>
15 <th>{{ _("Last update") }}</th>
16 <th>&nbsp;</th>
17 </tr>
18 {% for mirror in mirrors %}
19 <tr class="mirror-{{ mirror.state.lower() }}">
20 <td>{{ mirror.hostname }}</td>
21 <td>{{ locale.format_date(mirror.last_update) }}</td>
22 <td>
23 <a href="/mirrors/details/{{ mirror.id }}">{{ _("Details") }}</a>
24 <a href="/mirrors/edit/{{ mirror.id }}">{{ _("Edit") }}</a>
25 <a href="/mirrors/delete/{{ mirror.id }}">{{ _("Delete") }}</a>
26 </td>
27 </tr>
28 {% end %}
29 </table>
30 </div>
31{% end %}