summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-03-06 10:36:35 -0600
committerDan McGee <dan@archlinux.org>2010-03-06 10:36:35 -0600
commite485ab531051f41601cd1108114be5bb487082e9 (patch)
treecc0e181aeaa8869121c1be4a7ab177f7fbaa6577
parent8cf1ee31aea233dfecc2adfa465c841e0a79d6b0 (diff)
Add tier column to mirrorlist page
Obviously this page could use some more work anyway, but for now just quickly throw it in there. Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--templates/devel/mirrorlist.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/devel/mirrorlist.html b/templates/devel/mirrorlist.html
index 630d018d..bd09d7f2 100644
--- a/templates/devel/mirrorlist.html
+++ b/templates/devel/mirrorlist.html
@@ -6,6 +6,7 @@
<table class="results" width="100%">
<tr>
<th>Name</th>
+ <th>Tier</th>
<th>Country</th>
<th>Admin Email</th>
<th>Public</th>
@@ -18,6 +19,7 @@
{% 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>