Is it possible to set the default sort order for a model to a field from a related model (rather than the integer key) i.e. something that yields a SQL order by clause with
I use django 1.2.7 and instead of connecting ForeignKey.Attribute we should use "__", so this code will work:
class Meta: ordering = ('bar_date', 'related__name', )