From e86ebd0ad23fa42fe7381a54f4e9f0dc71b42ad4 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 31 Jan 2010 11:35:13 -0600 Subject: Don't exclude testing packages from recently updated Signed-off-by: Dan McGee --- public/views.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'public') diff --git a/public/views.py b/public/views.py index 39e5b5fb..b44b02ab 100644 --- a/public/views.py +++ b/public/views.py @@ -10,8 +10,7 @@ from django.views.generic import list_detail def index(request): context = { 'news_updates': News.objects.order_by('-postdate', '-id')[:10], - 'pkg_updates': Package.objects.exclude( - repo__name__iexact='testing').order_by('-last_update')[:15], + 'pkg_updates': Package.objects.order_by('-last_update')[:15], 'repos': Repo.objects.all() } return render_to_response('public/index.html', context, -- cgit v1.2.3-55-g3dc8