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',)

Example 3: django order by

#Add this to your models.py class, and dont remove the comma!
class Meta:
        ordering = ('yourfeild',)

Example 4: django 3.0 queryset examples

>>> Entry.objects.filter(
...     headline__startswith='What'
... ).exclude(
...     pub_date__gte=datetime.date.today()
... ).filter(
...     pub_date__gte=datetime.date(2005, 1, 30)
... )