Here is a snippet of how my models are setup:
class Profile(models.Model): name = models.CharField(max_length=32) accout = models.ManyToManyFie
That worked for me:
Profile.objects.account.order_by('profileaccounts')