Lets say there is a structure like this:
class Aaaaa(models.Model):
b = models.ManyToManyField('Bbbbb')
class Bbbbb(models.Model):
c = models.ForeignKey('Ccccc')
class Ccccc(models.Model):
x = models.CharField(max_lenght="3")
Now I'm in the DetailView of Aaaaa. I do prefetch_related('b'). But how can I let Django know to get all the "Ccccc" as well?