Ordre Django Desc
Obj.objects.all().order_by('-id')
Precious Pheasant
Obj.objects.all().order_by('-id')
#Add this to your models.py class, and dont remove the comma!
class Meta:
ordering = ('yourfeild',)
class Meta:
ordering = ('date',)
Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')