Hello,
I have a Model enought big to be cut in 3 Forms.
I wanted to use FormWizzard to do that and I am wondering, how to save the information from the form to the database?
Everything is from the same model.
Do you have any idea of how to do that ?
...
I'm having some issues with the form wizard, that maybe someone can shed some light on. According docstring in the method process_step: I can "dynamically alter self.form_list". So, based on my project needs, I'm appending forms to the form_list. The forms I'm appending contain questions and answers: http://dpaste.com/hold/152201/
Th...
Hi all,
Would it be possible/best practice to use 1 FormWizard for manipulating multiple models?
I've experimented with the FormWizard and have defined all the forms. The page 'flow' itself works like a charm. However with all the checks that need to be done and Models that are manipulated it feels like I'm sticking code in the form's...
I need to create a Django FormWizard asking for the user personal data in the first step and for an image in the next step(there are more steps asking for personal data later). I can store all the data in the database except the ImageFields
I read this http://code.djangoproject.com/ticket/7439 , I apply the suggested patch to my django...
Hi,
I am in the process of making a webapp, and this webapp needs to have a form wizard. The wizard consists of 3 ModelForms, and it works flawlessly. But I need the second form to be a "edit form". That is, i need it to be a form that is passed an instance.
How can you do this with a form wizard? How do you pass in an instance of a mo...
Hi guys, i would like to know how force user to fill forms before do something else.
I have a private area, i need the user's fill the forms, there's 4 forms, (is a job's board).
a) i want fill the forms with wizardforms, but how force to do it?
Sorry with my english
Thanks
...
Hi guy's, im trying to use django formWizard, all is fine, but im getting an error in the last step after submit
Traceback (most recent call last):
File "/home/vacantes/webapps/django/lib/python2.6/django/core/handlers/base.py", line 100, in get_response
response = callback(request, *callback_args, **callback_kwargs)
File "/h...
How do I wrap a Django Form Wizard in a view? I need to do this so I can access request.
Does anyone have some example code for this?
...
I'm wondering if someone uses django wizard step by step but with back option? I have form with 5 steps and now it is 'one way form' but I would like to develop it by back option (of course data between steps should be remember). Any idea?
...
I have a FormWizard where I need data from the first form to pass to the constructor of the second form so I can build a dynamic form.
I can get the first form's data via the process_step of the FormWizard.
I create the fields of the second form with a database call of the list of fields.
class ConditionWizardDynamicQuestions(forms.Fo...