summaryrefslogtreecommitdiffstats
path: root/mirrors
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-05-10 18:10:04 -0500
committerDan McGee <dan@archlinux.org>2013-05-10 18:10:04 -0500
commit8097a1fdeff36fb3db521a3b354ea8bf576869cc (patch)
tree6591226d8f58cc4462e71c21fe9853a62a76fbfd /mirrors
parent76be96ac2c11604a2bfceed4212b686719620b13 (diff)
downloadarchweb-8097a1fdeff36fb3db521a3b354ea8bf576869cc.tar.gz
archweb-8097a1fdeff36fb3db521a3b354ea8bf576869cc.zip
Add mirror error logs to mirror details page
Give a window of 7 days for logs here rather than the default 24 hours we do on the main status page since we are only retrieving details for a single mirror with a handful of URLs. This should make it easier to have all information regarding one mirror in a single location. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors')
-rw-r--r--mirrors/views.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/mirrors/views.py b/mirrors/views.py
index 73d40297..d1dd9da3 100644
--- a/mirrors/views.py
+++ b/mirrors/views.py
@@ -175,6 +175,7 @@ def mirror_details(request, name):
if not request.user.is_authenticated() and \
(not mirror.public or not mirror.active):
raise Http404
+ error_cutoff = timedelta(days=7)
status_info = get_mirror_statuses(mirror_id=mirror.id)
checked_urls = {url for url in status_info['urls'] \
@@ -188,9 +189,15 @@ def mirror_details(request, name):
setattr(url, attr, None)
all_urls = sorted(checked_urls.union(other_urls), key=attrgetter('url'))
- return render(request, 'mirrors/mirror_details.html',
- {'mirror': mirror, 'urls': all_urls})
+ error_logs = get_mirror_errors(mirror_id=mirror.id, cutoff=error_cutoff)
+ context = {
+ 'mirror': mirror,
+ 'urls': all_urls,
+ 'cutoff': error_cutoff,
+ 'error_logs': error_logs,
+ }
+ return render(request, 'mirrors/mirror_details.html', context)
def mirror_details_json(request, name):
mirror = get_object_or_404(Mirror, name=name)