I\'d like to create a many-to-many relationship from and to a user class object.
I have something like this:
class MyUser(models.Model): ...
don't use 'self' in ManyToManyField, it will cause you object link each other, when use django form to submit it
class Tag(models.Model): ... subTag = models.ManyToManyField("self", blank=True) ... aTagForm.save()
and result:
a.subTag == b b.subTag == a