Specifically, I have a model that has a field like this
pub_date = models.DateField(\"date published\")
I want to be able to easily grab the ob
Harley's answer is the way to go for the case where you want the latest according to some ordering criteria for particular Models, as you do, but the general solution is to reverse the ordering and retrieve the first item:
Edition.objects.order_by('-pub_date')[0]