django-formwizard

Django ModelForm Wizard - How to create the database object ?

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 ? ...

Django FormWizard Dynamically Alter form_list

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...

Django: One FormWizard for multiple models

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...

Django FormWizard and ImageFields

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...

Formwizards for editing in 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...

How force user to fill forms before do something else ?

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 ...

FormWizard and saving data

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 wrap a FormWizard in a View?

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? ...

Django - form wizard step by step

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? ...

How to pass previous form data to the constructor of a DynamicForm in FormWizard

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...