Re: Django Class-based Views with Multiple Forms

2016-07-11 Thread Edgar Gabaldi
Hi paul. There is a package called django-extra-views that solve exactly this problem. See CreateViewWithInlines (or something like that). Em 7h40 Seg, 11/07/2016, Paul escreveu: > By default Django’s class-based views support just a single form per view. > > I need

Django Class-based Views with Multiple Forms

2016-07-11 Thread Paul
By default Django’s class-based views support just a single form per view. I need more forms per view because I want to combine a ForeignKey relations with various ModelForm instances and also to appear in the FormModel. In Django documentation and other tutorials I found formsets, but in the