summaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-09-25 04:13:02 +0200
committerDan McGee <dan@archlinux.org>2012-09-25 04:13:02 +0200
commit05f309d7e57a66d9309abbf19b4328bad514b978 (patch)
treef7a934d04a911d88a6c3fa001eb872e50d36bb63 /devel
parent8bf9147f47341d6efcad20931255888f7186bb7b (diff)
downloadarchweb-05f309d7e57a66d9309abbf19b4328bad514b978.tar.gz
archweb-05f309d7e57a66d9309abbf19b4328bad514b978.tar.xz
Add a new column to developer repo stats
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'devel')
-rw-r--r--devel/views.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/devel/views.py b/devel/views.py
index 23ff9f7..ea85a90 100644
--- a/devel/views.py
+++ b/devel/views.py
@@ -55,6 +55,11 @@ def index(request):
total_ct=Count('packages'), flagged_ct=Count('packages__flag_date'))
repos = Repo.objects.all().annotate(
total_ct=Count('packages'), flagged_ct=Count('packages__flag_date'))
+ # the join is huge unless we do this separately, so merge the result here
+ repo_maintainers = dict(Repo.objects.all().values_list('id').annotate(
+ Count('userprofile')))
+ for repo in repos:
+ repo.maintainer_ct = repo_maintainers.get(repo.id, 0)
maintainers = get_annotated_maintainers()