django manytomany field using through and formwizard
问题 I am trying to create a pretty complicated form and break it up using formwizard. The first thing I am trying to do is get the ManyToManyField using through to display, Then I need to figure out how to make it all save. #models.py ---------------------- class Meat(models.Model): name = models.charField(max_length=200) company = models.CharField(max_length = 200) class Starch(models.Model): name = models.CharField(max_length=200) company = models.CharField(max_length=200) class Recipe(models