django model order_by code example
Example 1: django order by
Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')
Example 2: django order by
class Meta:
ordering = ('date',)
Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')
class Meta:
ordering = ('date',)