On Jun 25, 12:13 pm, twenger26 <[EMAIL PROTECTED]> wrote:

> def wrapper_for_wizard(request):
>     return AddOrderWizard([OrderForm1, OrderForm2Quote, OrderForm3])

You're on the right track! You need to pass your list of forms to the
wizard constructor, as you're doing, as well as pass the request
object when instantiating the form. Try this::

    return AddOrderWizard([OrderForm1, ...])(request)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to