Re: Form Wizard, using reverse to pass data to extra_context

2009-01-16 Thread coulix
Perfect ! Then i just do a {% ifequal request.GET.extra_context "foo" %} and it works. Thanks On Jan 16, 3:10 am, Malcolm Tredinnick wrote: > On Thu, 2009-01-15 at 04:13 -0800, coulix wrote: > > Hi, > > > I use a formWizard for a signup process: > > >     url(r'^signup/student/$', SignupStudentW

Re: Form Wizard, using reverse to pass data to extra_context

2009-01-15 Thread Malcolm Tredinnick
On Thu, 2009-01-15 at 04:13 -0800, coulix wrote: > Hi, > > I use a formWizard for a signup process: > > url(r'^signup/student/$', SignupStudentWizard([SignupForm, > StudentForm]), > {'extra_context':{"type":"student"}}, name='signup_student',), > > Now, used as it is it works fine.

Form Wizard, using reverse to pass data to extra_context

2009-01-15 Thread coulix
Hi, I use a formWizard for a signup process: url(r'^signup/student/$', SignupStudentWizard([SignupForm, StudentForm]), {'extra_context':{"type":"student"}}, name='signup_student',), Now, used as it is it works fine. However in one case i need to pass extra_context data at run_time,