diff options
author | Dan McGee <dan@archlinux.org> | 2013-12-15 20:22:41 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-12-15 20:28:13 +0100 |
commit | 79aef280ddf0c704fd40d0077822a8ff7548437e (patch) | |
tree | 706e88b3e072402feeb1baee7e6cbaa658226aeb /templates/mirrors/mirror_details.html | |
parent | 3c7b02753a4f742eeb66b8deea2fc3f179b87b8e (diff) | |
download | archweb-79aef280ddf0c704fd40d0077822a8ff7548437e.tar.gz archweb-79aef280ddf0c704fd40d0077822a8ff7548437e.tar.xz |
Add mirror URL details page
This will allow those that care about mirrors to zoom into URL-level
details for each mirror and examine the individual check results.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/mirrors/mirror_details.html')
-rw-r--r-- | templates/mirrors/mirror_details.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/mirrors/mirror_details.html b/templates/mirrors/mirror_details.html index aa0a964..665ad80 100644 --- a/templates/mirrors/mirror_details.html +++ b/templates/mirrors/mirror_details.html @@ -42,6 +42,10 @@ <td>{{ mirror.active|yesno|capfirst }}</td> </tr> <tr> + <th>Created:</th> + <td>{{ mirror.created }}</td> + </tr> + <tr> <th>Rsync IPs:</th> <td class="wrap">{{mirror.rsync_ips.all|join:', '}}</td> </tr> @@ -99,7 +103,8 @@ <th>μ Delay (hh:mm)</th> <th>μ Duration (secs)</th> <th>σ Duration (secs)</th> - <th>Mirror Score</th> + <th>Score</th> + <th>Details</th> </tr> </thead> <tbody> @@ -116,6 +121,7 @@ <td>{{ m_url.duration_avg|floatvalue:2 }}</td> <td>{{ m_url.duration_stddev|floatvalue:2 }}</td> <td>{{ m_url.score|floatvalue:1|default:'∞' }}</td> + <td><a href="{{ m_url.id }}/">Details</a></td> </tr> {% endfor %} </tbody> |