This is my initial form:
----
[[Image(https://fbcdn-sphotos-d-a.akamaihd.net/hphotos-ak-
frc3/1424472_608715022529536_1773254433_n.jpg)]]
----
After submitting the form I checked the POST data, it is as follows
----
[[Image(https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-
prn2/1601580_608715299196175_551194172_n.jpg)]]
After the end of the form wizard at the last submit.
it redirects me to the form page with the multiple choice field and raises
an error
----
[[Image(https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-
frc3/1528575_608715279196177_1336282649_n.jpg)]]
----
[[Image(https://fbcdn-sphotos-a-a.akamaihd.net/hphotos-ak-
frc1/1002495_608715289196176_70850502_n.jpg)]]
I think multiple choice field in form is not saving as the list in the
session instead just a value.
----
My code for form wizard
{{{
class WizardEmployee(SessionWizardView):
template_name = "dashboard/wizard/wizard.html"
file_storage =
FileSystemStorage(location=os.path.join(settings.MEDIA_ROOT, 'photos'))
def done(self,form_list,**kwargs):
return HttpResponse("success")
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/21736>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* needs_better_patch: => 0
* needs_tests: => 0
* needs_docs: => 0
Comment:
I'm not sure there's enough information in this report to determine
whether this is a bug in Django or a bug in your own code. Could you write
a test for Django's test suite that demonstrates the behavior? There are
some tests for form wizard in django/contrib/formtools/tests.
--
Ticket URL: <https://code.djangoproject.com/ticket/21736#comment:1>
* status: new => closed
* resolution: => needsinfo
--
Ticket URL: <https://code.djangoproject.com/ticket/21736#comment:2>