I have a large Django model (73 fields) that will will be connected to a ModelForm. I'd like to use a combination of the functionality found the Form Wizard and Form Preview contrib apps.
I.e., the form fields would be split over multiple pages, and the user would have a chance to review/preview the data before the model instance is created.
Are there any best-practices for this type of thing, or example code?
__init__in an obvious way (besides the initial values). So how are you going to supply an "instance" keyword argument to the form's__init__? Of course there are ways - I, for example, solved it by declaring an inner class, that inherits from the neccessary ModelForm and overriding__init__. Then you must assign that class to an element of .form_list. Not very obvious ... – shylent Nov 11 '09 at 16:33