is there a way to get a parameter passed in my url when i use a form wizard ?
url(r'^foo/(?P<slug>[a-z0-9-]+)/add_bar/$',
AddBarWizard.as_view([AddBarForm1, AddBarForm2,
AddBarForm3], template_name='add-Bar.html'),
name='add_bar'),
overriding the get() method, i have my request, but GET is empty, and nothing in the debug gives me the slug i’m waiting on.
Any idea ?
apologize, my slug is in my kwargs not in the request.GET Oo
then, i’m ok, i’ve my slug 🙂