Re: Inline Formsets Again

2009-10-29 Thread mrts
On Oct 28, 9:43 am, John Debs wrote: > I've written a creaky hack to work around the issue in my own projects > but after seeing this thread I'm going to take a shot at implementing > FormSetField (or something like it) myself. If anyone has any code - > or more arguments for or against that have

Re: Inline Formsets Again

2009-10-28 Thread Tobias McNulty
We regularly handle a several forms/formsets in a view and it is not a big deal. For a client with complex search needs, we wrote a few views that manage about 18 different forms each through a python dictionary, e.g.: forms = { 'group_name': [Form1(request.POST), Form2(request.POST)], } so

Inline Formsets Again

2009-10-28 Thread John Debs
I realize the voting for 1.2 features has passed and that the collective attention will be focused on that list, but I'm hoping to get a core developer interested enough to look at potential implementations for this and suggest improvements. The thread I'm resurrecting is this one: http://groups.go