I want to insert some data into a many to many field. I 'm getting this Error
user is an invalid keyword argument for this function
i also tried it with the relatedName...but still is not working...
My model looks like this:
models.py
class Workspace(models.Model):
user = models.ManyToManyField(User,null=False, blank=False, related_name='members')
workspace_name = models.CharField(max_length=80, null=False, blank=False)
workspace_cat =models.CharField(max_length=80, null=True, blank=True)
views.py
db= Workspace(user=5, workspace_name=data_to_db['workspace_name'],workspace_cat=data_to_db['workspace_category'])
db.save()
Does somebody has an idea? Thanks a lot!