passing extra arguments formset save

2013-07-20 Thread Clement Poh
I have a bunch of inline formsets, which are related to two models. In this case I want to have a bunch of "Dealings" associated with a "Report" and a "Question". So I can associate them to one fairly easily. DealingFormset = inlineformset_factory(Report, Dealing, form = DealingForm) So to as

Overriding the formset save method/ Inlineformsets with 2 related Models

2013-07-20 Thread Clement Poh
I have a bunch of inline formsets, which are related to two models. In this case I want to have a bunch of "Dealings" associated with a "Report" and a "Question". So I can associate them to one fairly easily. DealingFormset = inlineformset_factory(Report, Dealing, form = DealingForm) So to as