Tagged Questions

4
votes
5answers
4k views

Django FormWizard with dynamic forms

I want to implement a simple 2 part FormWizard. Form 1 will by dynamically generated something like this: class BuyAppleForm(forms.Form): creditcard = forms.ChoiceField(widget = forms.RadioSelect) ...
2
votes
2answers
540 views

Django form wizard - choices depending on first form step

I have created a 2 step form with the FormWizard as follows: 1st step: asking user for location 2nd step: show several search results depending on the user location, and display it as ...
1
vote
2answers
153 views

Problems with combine django-registration and FormWizard

I do something wrong, but I don't know what. I try to combine django-registration 0.7 and form wizard but i getting error like this: AttributeError at / 'BoundField' object has no attribute ...
1
vote
1answer
155 views

Easiest way to save Django´s formwizard form_list in DB?

I have created multiple sub-forms from one model to use the FormWizard in Django. Confusing is the saving part. Once the user finished the form, I wanted to save the information in the DB. This is ...
1
vote
0answers
125 views

FormWizard: Forms determined dynamically

In my website, i wanna give users the possibility to upload videos, audio files, and pdfs. For this, i have thought about using formwizard. The first form-page is to ask for the name + the type of ...
1
vote
2answers
694 views

Skip steps on a django FormWizard

I have an application where there is a FormWizard with 5 steps, one of them should only appear when some conditions are satisfied. The form is for a payment wizard on a on-line cart, one of the steps ...
0
votes
1answer
25 views

How wrap the new FormWizard in a view?

Using the new formwizard tool (https://github.com/stephrdev/django-formwizard), How do I wrap the Django Form Wizard in a view? Instead of create it in the urls.py. I need to do this so I can access ...
0
votes
1answer
132 views

Django FormWizard - How do you dynamically create a formset based on previous step

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 ...
0
votes
1answer
51 views

Passing Different Templates in Django Form Wizard

I want to pass different template in each step for my django form wizard. I want to check each step from form wizard's get_template() function. If I try : def get_template(self,step): if step == ...
0
votes
1answer
76 views

django wizard — How to realize a dynamic form(or formset) in wizard

I have asked a similar question yesterday but perhaps it was too concret. I have read a lot about this on net, but I didn't find any solution. Here is what I want to realize: I want to ...
0
votes
0answers
70 views

django form wizard - Can not enter done method

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 ...
0
votes
0answers
77 views

How to reset current step in django formwizard

I'm making an app for registration using FormWizard including 3 steps. The app works fine if the user just go step-by-step. But I have two big problems: User can't go back from a step to the ...
0
votes
1answer
121 views

Django Form Wizard, SessionWizardView Import Error

I want to implement a django form wizard. I read the documentation about it but when I add the 'from django.contrib.formtools.wizard.views' import SessionWizardView' to my view, i get "No module ...
0
votes
0answers
121 views

Django: Submit points at wrong url

I have two forms in the same app (reMap), one is based on the Django FormWizard and "normal" form. The "normal" form works fine, but when I use the Wizard created form, the user gets redirected to the ...
0
votes
1answer
211 views

How/where to stop Django Formwizards 'done' method being called on payment failure

I've looked through the django documentation, done lots of googling and have tried quite a few different solutions but to no avail. I've created a 3 part form using Django's FormWizard. Once the last ...
0
votes
1answer
213 views

Django FormWizard and view

Basically, I just want to be able to get the parameter community_name, can this be done with (r'^(?P<community_name>\w+)/matches/submit/$', MatchWizard([MatchStep1Form, MatchStep2Form, ...
0
votes
1answer
538 views

How to create Django FormWizard for one Model?

I have Django Model with many fields which user must fill. If I'll create one ModelForm for this Model it will be big enough for one form. I want to split it using FormWizard. I think it's possible ...