django 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',)
Example 3: django order by
#Add this to your models.py class, and dont remove the comma!
class Meta:
ordering = ('yourfeild',)
Example 4: django queryset count
# Returns the total number of entries in the database.
Entry.objects.count()
# Returns the number of entries whose headline contains 'Lennon'
Entry.objects.filter(headline__contains='Lennon').count()