summaryrefslogtreecommitdiffstats
path: root/templates/devel/mirrorlist.html
blob: bd09d7f281a95561aa14afdff8254385c8baae29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{% extends "base.html" %}
{% block title %}Arch Linux - Mirror Overview{% endblock %}

{% block content %}
<div class="greybox">
	<table class="results" width="100%">
		<tr>
			<th>Name</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>
		{% for mirror in mirror_list %}
		<tr>
			<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>{{mirror.supported_protocols}}</td>
			<td>{{mirror.rsync_ips.count}}</td>
			<td>{{mirror.notes}}</td>
		</tr>
		{% endfor %}
	</table>
</div>
{% endblock %}