I need to modify a wizard in order to allow it to upload several images at one time(during 1st step, 2 steps in total).
For this, I write a make method which generates the form class according to the number of files. Then I replace the original form(which allows upload an image) by this new generated form. After doing this, I can pass the first step, but after I submit the data at the last step, the data will not be stored and I will be automatically redirected to the first step of the wizard. I have checked that the code haven't gone into done method.
Anyone can help?
forms.py
def make_multi_pic_form(instance, files_number):
fields = SortedDict({
'summary' : forms.CharField(label=_(u"Titre"), max_length=100, widget=forms.TextInput(attrs={'class': 'inm'}))
})
# create picutre fields on the fly
if(files_number > 1):
for _i in range(files_number-1):
fields['picture_%s' % (_i+1)] = forms.ImageField(label=_(u"Photo %s" % _i), required=False, widget=forms.FileInput(attrs={'class':'inm'}))
fields['picture_id_%s' % (_i+1)] = forms.IntegerField(required=False, widget=forms.HiddenInput())
form_class = type('_ProductForm', (forms.BaseForm, ), {'instance': instance, 'base_fields': fields})
return form_class
wizard.py
def get_form(self, step, data=None, files=None):
if self.form_list[step].__name__ == '_ProductForm':
if files and len(files) > 1:
files_number = len(files)
data['0-picture_id'] = Picture.objects.create(image=files['0-picture']).id
del files['0-picture']
for _i in range(files_number-1):
data['0-picture_id_%s' % (_i+1)] = Picture.objects.create(image=files['0-picture_%s' % (_i+1)]).id
del files['0-picture_%s' % (_i+1)]
return self.form_list[step](data, files, prefix=self.prefix_for_step(step),
initial=self.initial.get(step, None))
views.py
def product_create(request, *args, **kwargs):
wizard = ProductWizard([make_multi_pic_form(instance=Product(quantity=1, deposit_amount=0), files_number=len(request.FILES)), EmailAuthenticationForm])
return wizard(request, *args, **kwargs)