﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
18830	FormWizard with Formset and Form Fields mixed on same page	jeff@…	nobody	"I would like to request something like the following:
On a given page in a FormWizard, support the ability to mix a formset along with other form fields.

A use-case would be a page in a wizard that lets you add N users to email, and a textarea to customize this email.

The code for such a thing would look like

forms.py
{{{
# Step 1 in wizard
class Step1Form(forms.Form):
    # interesting form fields...

# Form for the email addresses used in Step 2 Formset
class EmailAddressForm(forms.Form):
    email = forms.EmailField()

# Step 2 in wizard
class EmailAddressesAndText(forms.Form):
    emailText = forms.Textarea()
    emailAddressFormSet = formset_factory(EmailAddressForm, can_delete=True, ...)
}}}

in urls.py
{{{
## 
named_formwizard_forms = (
    ('Step1', Step1Form),
    ('Step2', EmailAddressesAndText),
)
}}}

This would be a very clean way to mix form fields and an embedded formset in a way that can be leveraged as part of the FormWizard found in 1.4

Thanks!
"	New feature	closed	Forms	1.4	Normal	wontfix		hv@… thepapermen Bouke Haarsma Mathijs de Bruin	Unreviewed	0	0	0	0	0	0
