Re: Form Wizard: how to send instance_dict based on the request

2015-02-24 Thread Karim
On Fri, Feb 20, 2015 at 5:49 AM, Collin Anderson wrote: > You could instead just override get_form_instance(step). That way you'll > have access to self.request. > ​Thank you!​ -- Karim N. Gorjux -- You received this message because you are subscribed to the Google Groups "Django users" g

Re: Form Wizard: how to send instance_dict based on the request

2015-02-19 Thread Collin Anderson
Hi, You could instead just override get_form_instance(step). That way you'll have access to self.request. Collin On Tuesday, February 17, 2015 at 8:26:30 PM UTC-5, Karim Gorjux wrote: > > Hello mates! > > I have some problems to understand how to set the view for > the NamedUrlSessionWizardVie

Form Wizard: how to send instance_dict based on the request

2015-02-17 Thread Karim
Hello mates! I have some problems to understand how to set the view for the NamedUrlSessionWizardView creating a instance_dict based on the user in the request. in my urls.py url(r'wizard/new/(?P.+)/$', ServiceCUWizard.as_view( FORMS, # the list of ['form_name', form_obj