evorepo/templates/devel/mirrorlist.html
Thayer Williams 08f886380c Redesigned dev mirrorlist page, proper django cycling, semantics
Signed-off-by: Dan McGee <dan@archlinux.org>
2010-05-17 14:49:44 -05:00

44 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - Mirror Overview{% endblock %}
{% block content %}
<div id="dev-mirrorlist" class="box">
<h2>Mirror List</h2>
<table class="results">
<thead>
<tr>
<th>Server</th>
<th>Tier</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>
</thead>
<tbody>
{% for mirror in mirror_list %}
<tr class="{% cycle 'odd' 'even' %}">
<td>{{mirror.name}}</td>
<td>{{mirror.get_tier_display}}</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 class="wrap">{{mirror.supported_protocols}}</td>
<td>{{mirror.rsync_ips.count}}</td>
<td class="wrap">{{mirror.notes}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}