Given django models A and B:
class A(models.Model):
things = models.ManyToManyField('B')
class B(models.Model):
score = models.FloatField()
text = models.CharField(max_length=100)
How do I get a list of A entities ordered by the text of the highest-scoring B in things?