django-formwizard icon indicating copy to clipboard operation
django-formwizard copied to clipboard

A rewrite of django's formwizard with pluggable storages

Results 12 django-formwizard issues
Sort by recently updated
recently updated
newest added

So I've just added that exception message for missing file_storage so it would appear at top of debug page instead of having your scroll all the way down.

When passing an inline form (generated by inlineformset_factory), formwizard would crash with a "invalid keyword: "initial") error. inlineformset_factory produces a BaseInlineFormSet that is derived from BaseModelFormSet. Unfortunately, it needs an...

Hello I started using the django-formwizard for a project where we use a CBV based tab navigation. I need to put a form inside a tab. Using the current generic...

I added a new FormWizard class and a utility class. The new FormWizard is UniqueSessionFormWizard and it is a subclass of SessionFormWizard. The only extension is that it takes a...

Has anyone integrated FormPreview with django-formwizard, or how might one go about showing a confirmation page before submitting the final form?

Hello, I've been trying to make formwizard working since hours, and it doesn't work because of firefox/firebug incompatibility. Anyway this is only guess, but strong because it starts working perfectly...

How do I wrap the new 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've been trying to use a ModelFormset in my WizardView and the ModelFormset appears in the right step. On that note, it is okay but it doesn't seem to be...

I have 3 checkboxes on page 1 of my formwizard, one each representing pages 2, 3 and 4. If I write a generic conditional function to skip any of those...