views:

24

answers:

1

Hi, I have a ManyToManyField in a model which uses the 'through' option. Using a Django ModelForm, this seems to be failing giving me a funny error about having to use the model's manager.

I want to be able to edit this inline (i think the admin lets me do this) and looked up it on google, but everything to use this Django Inline Forms is really messy and I want to be able to keep my code clean and understandable.

Thanks, Joe

A: 

I just got my head around inline forms. The documentation is just silly.

Joe Simpson