summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorDusty Phillips <buchuki@gmail.com>2008-08-06 17:58:15 -0400
committerDusty Phillips <buchuki@gmail.com>2008-08-06 17:58:15 -0400
commit3596877f543425188be39da89a5cb52e6f97957a (patch)
tree687da2133d0cca7f7fdfa1a0b7245f79c6f4a442 /packages
parent1cab1fe84194663d5c9d92e0755a3a0a03e13a27 (diff)
downloadarchweb-3596877f543425188be39da89a5cb52e6f97957a.tar.gz
archweb-3596877f543425188be39da89a5cb52e6f97957a.zip
improve the template
Diffstat (limited to 'packages')
-rw-r--r--packages/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/views.py b/packages/views.py
index 5b2da419..4fec2558 100644
--- a/packages/views.py
+++ b/packages/views.py
@@ -146,7 +146,7 @@ def unflag(request, pkgid):
return HttpResponseRedirect('/packages/%d/' % (pkg.id))
def signoffs(request):
- packages = Package.objects.filter(repo__name="Testing")
+ packages = Package.objects.filter(repo__name="Testing").order_by("pkgname")
return render_response(request, 'packages/signoffs.html',
{'packages': packages})