diff options
author | Dan McGee <dan@archlinux.org> | 2010-03-06 17:36:35 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-03-06 17:36:35 +0100 |
commit | e485ab531051f41601cd1108114be5bb487082e9 (patch) | |
tree | cc0e181aeaa8869121c1be4a7ab177f7fbaa6577 /templates | |
parent | 8cf1ee31aea233dfecc2adfa465c841e0a79d6b0 (diff) | |
download | archweb-e485ab531051f41601cd1108114be5bb487082e9.tar.gz archweb-e485ab531051f41601cd1108114be5bb487082e9.tar.xz |
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>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/devel/mirrorlist.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/devel/mirrorlist.html b/templates/devel/mirrorlist.html index 630d018..bd09d7f 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> |