vote up 0 vote down star

I have a Django model for Cat which has a foreign key Dog. The Dog model has a date key timestamp. I want to order the cats, using Cat.objects.order_by, according to the timestamps of their respective dogs. How do I do that?

flag

66% accept rate

1 Answer

vote up 2 vote down check

Use the double-underscore syntax.

Cat.objects.order_by('dog__timestamp')
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.