summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-01-31 11:35:13 -0600
committerDan McGee <dan@archlinux.org>2010-01-31 11:35:13 -0600
commite86ebd0ad23fa42fe7381a54f4e9f0dc71b42ad4 (patch)
treebadd1a2a5e181755548217a08fef54fc0d43f37a /public
parentc60856ff6e775cedeb37f6e20538d1932498b382 (diff)
downloadarchweb-e86ebd0ad23fa42fe7381a54f4e9f0dc71b42ad4.tar.gz
archweb-e86ebd0ad23fa42fe7381a54f4e9f0dc71b42ad4.zip
Don't exclude testing packages from recently updated
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'public')
-rw-r--r--public/views.py3
1 files changed, 1 insertions, 2 deletions
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,