43 lines
1.4 KiB
Python
43 lines
1.4 KiB
Python
|
from django import forms
|
||
|
from django.forms.formsets import formset_factory
|
||
|
from django.http import HttpResponse
|
||
|
from django.template import Template, Context
|
||
|
|
||
|
from django.contrib.auth.models import User
|
||
|
|
||
|
from django.contrib.formtools.wizard.views import NamedUrlWizardView
|
||
|
|
||
|
class Page1(forms.Form):
|
||
|
name = forms.CharField(max_length=100)
|
||
|
user = forms.ModelChoiceField(queryset=User.objects.all())
|
||
|
thirsty = forms.NullBooleanField()
|
||
|
|
||
|
class Page2(forms.Form):
|
||
|
address1 = forms.CharField(max_length=100)
|
||
|
address2 = forms.CharField(max_length=100)
|
||
|
|
||
|
class Page3(forms.Form):
|
||
|
random_crap = forms.CharField(max_length=100)
|
||
|
|
||
|
Page4 = formset_factory(Page3, extra=2)
|
||
|
|
||
|
class ContactWizard(NamedUrlWizardView):
|
||
|
def done(self, form_list, **kwargs):
|
||
|
c = Context({
|
||
|
'form_list': [x.cleaned_data for x in form_list],
|
||
|
'all_cleaned_data': self.get_all_cleaned_data()
|
||
|
})
|
||
|
|
||
|
for form in self.form_list.keys():
|
||
|
c[form] = self.get_cleaned_data_for_step(form)
|
||
|
|
||
|
c['this_will_fail'] = self.get_cleaned_data_for_step('this_will_fail')
|
||
|
return HttpResponse(Template('').render(c))
|
||
|
|
||
|
class SessionContactWizard(ContactWizard):
|
||
|
storage_name = 'django.contrib.formtools.wizard.storage.session.SessionStorage'
|
||
|
|
||
|
class CookieContactWizard(ContactWizard):
|
||
|
storage_name = 'django.contrib.formtools.wizard.storage.cookie.CookieStorage'
|
||
|
|