I have a problem saving many to many fields from a form. Here are my models:
class TextIssue(models.Model): Issue = models.CharField(max_length=150, uniq
http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#the-save-method
When using commit=False, you have to call save_m2m()
commit=False
save_m2m()
m2m relationships require the parent object to be saved first, which you are not doing by using commit=False