diff options
author | Dan McGee <dan@archlinux.org> | 2009-09-15 20:13:11 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-09-15 20:14:06 -0500 |
commit | 9dc89e8287d9f34da140d0494005388b7abc14c2 (patch) | |
tree | 63096ac2ac13802545a84f426e9341dd2cb7fc98 /templates/devel | |
parent | e3ea5232732f442f75a372714b64e1c119c1be7c (diff) |
Add a basic mirror view for the dev site
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/devel')
-rw-r--r-- | templates/devel/mirrorlist.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/devel/mirrorlist.html b/templates/devel/mirrorlist.html new file mode 100644 index 00000000..01699daf --- /dev/null +++ b/templates/devel/mirrorlist.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} + +{% block content %} +<div class="greybox"> + <table class="results" width="100%"> + <tr> + <th>Name</th> + <th>Country</th> + <th>Admin Email</th> + <th>Public</th> + <th>Active</th> + <th>ISOs</th> + <th>Protocols</th> + <th>Rsync IPs</th> + <th>Notes</th> + </tr> + {% for mirror in mirror_list %} + <tr> + <td>{{mirror.name}}</td> + <td>{{mirror.country}}</td> + <td>{{mirror.admin_email}}</td> + <td>{{mirror.public|yesno}}</td> + <td>{{mirror.active|yesno}}</td> + <td>{{mirror.isos|yesno}}</td> + <td>{{mirror.supported_protocols}}</td> + <td>{{mirror.rsync_ips.count}}</td> + <td>{{mirror.notes}}</td> + </tr> + {% endfor %} + </table> +</div> +{% endblock %} |