how do I return db items in django desc code example
Example: django order by
Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')
Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')