I’ve seen this post and it’s not working (in part because it’s dated). I’ve also studied the source tree to no avail (the tests helped) but I can’t find my answer. What I’m looking to do is get a seed set of data in form0 (‘start’) which will dynamically build a formset for step2. Step 2 is simply a verification step.
- ‘start’ – User enters subdivision (subA), zipcode (12345) and a csv of lots (51,52,53)
- ‘step2’ – A dynamic form (modelformset) is created with 3 forms representing 51,52,53
- User hits go and the models are built
i.e.
data = [ { 'subdivision': <subA>, 'zipcode': '12345', 'lot_number': '51'}
{ 'subdivision': <subA>, 'zipcode': '12345', 'lot_number': '52'}
{ 'subdivision': <subA>, 'zipcode': '12345', 'lot_number': '53'} ]
What I’ve tried
When implementing the solution here I only get data=None. This is dated and looking through the source I thought the “right” way to do this was to simply override the get_form_instance method and feed itget_cleaned_data_for_step, but that appears to revalidate and do a lot more stuff than what I think it needs to (and it didn’t work).
So.. What I’m looking for is two things.
- What is the right way to get the previous forms data.
- How do I take that data and use it to create a n-number of formsets.
FWIW I am using Django 1.4-alpha formset wizard.
Here is what I have.
# urls.py
url(r'homes/bulk/$', TestWizard.as_view([('start', BulkHomeForm0),
('step2', HomeFormSet)])),
# Models.py
class Subdivision(models.Model):
name = models.CharField(max_length=64)
class Home(models.Model):
lot_number = models.CharField(max_length=16)
subdivision = models.ForeignKey(Subdivision)
zipcode = models.IntegerField(validators=[validate_zipcode], null=True)
# Forms
class BulkHomeForm0(forms.Form):
subdivision = forms.ModelChoiceField(queryset=Subdivision.objects.all(), required=True)
zipcode = USZipCodeField(required=True)
lots = forms.CharField(max_length=5000, widget=forms.Textarea()
def clean(self):
subdivision = self.cleaned_data.get('subdivision', False)
zipcode = self.cleaned_data.get('zipcode', False)
final_data = []
for item in self.cleaned_data.get('lots', "").split(",")
final_data.append({'subdivision':subdivision,
'zipcode':zipcode,
'lot_number':item})
self.cleaned_data['homes'] = final_data
class BulkHomeForm1(forms.ModelForm):
class Meta:
model = Home
HomeFormSet = modelformset_factory(Home, form=BulkHomeForm1, extra=2)
# Views.py
class TestWizard(WizardView):
storage_name = 'django.contrib.formtools.wizard.storage.session.SessionStorage'
def get_form(self, step=None, data=None, files=None):
form = super(TestWizard, self).get_form(step=step, data=data, files=files)
return form
def done(self, form_list, **kwargs):
return render_to_response('done.html', {
'form_data': [form.cleaned_data for form in form_list],
})
Here is what I came up with..
I couldn’t seem to get a modelForm to work nicely so I kept the two separate and merged them at
done. It isn’t perfect yet but it’s getting close..