Une question simple et pourtant je ne trouve pas de réponse.
J'ai un modèle avec un champ ManyToMany :
class Stuff(models.Model):
things = models.ManyToManyField(Thing)
alors dans une fonction différente je veux faire ceci:
myStuff = Stuff.objects.get(id=1)
for t in myStuff.things.all:
# ...
Mais ça me donne :
TypeError: 'instancemethod' object is not iterable
Comment puis-je itérer sur un manyToManyField ?