We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9487c3f commit b770c2dCopy full SHA for b770c2d
anthill/projects/views.py
@@ -21,7 +21,7 @@ def projects_and_ideas(request):
21
context_instance=RequestContext(request))
22
23
def archive(request, projects='all'):
24
- qs = Project.objects.select_related().all()
+ qs = Project.objects.select_related().order_by('-update_date')
25
if projects == 'official':
26
qs = qs.filter(official=True)
27
elif projects == 'community':
0 commit comments