Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')
#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')