You can use something like this:
Model1.objects.all().order_by('-model2__created')
In this code model2
is the related_query_name
of model1_foreign_key
, which is the class name by default.
CLICK HERE to find out more related problems solutions.