diff options
author | Dusty Phillips <buchuki@gmail.com> | 2008-08-06 17:58:15 -0400 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2008-08-06 17:58:15 -0400 |
commit | 3596877f543425188be39da89a5cb52e6f97957a (patch) | |
tree | 687da2133d0cca7f7fdfa1a0b7245f79c6f4a442 /packages/views.py | |
parent | 1cab1fe84194663d5c9d92e0755a3a0a03e13a27 (diff) |
improve the template
Diffstat (limited to 'packages/views.py')
-rw-r--r-- | packages/views.py | 2 |
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}) |