order by in django query 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')
Example 3: django order by
class Meta:
ordering = ('date',)