I’m attempting to create a formset for the following models:
class Category(models.Model):
name = models.CharField(max_length=100, unique=True)
description = models.TextField(null = True, blank=True)
class Recipe(models.Model):
title = models.CharField(max_length=100)
body = models.TextField()
user = models.ForeignKey(User)
categories = models.ManyToManyField(Category, null = True, blank = True)
But any time I try to implement a formset, like so:
FormSet = inlineformset_factory(Category, Recipe, extra=3)
formset = FormSet()
I get an error stating that no ForeignKey is present in the Category model. Is it possible to build a formset using a ManyToManyField, or to replicate this functionality in some way?
Thanks!
According to source code and documentation its only for foreign keys
So if you want create a formset for your models you have to change
to
Documentation:
https://docs.djangoproject.com/en/1.4/topics/forms/modelforms/#inline-formsets
https://docs.djangoproject.com/en/1.4/topics/forms/modelforms/#more-than-one-foreign-key-to-the-same-model
Django source: