order queryset django code example
Example 1: django desc order
Obj.objects.all().order_by('-id')
Example 2: django order by
Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')
Obj.objects.all().order_by('-id')
Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')