[Fixed]-Form wizard does not show the next button

1👍

When the submit button is pressed, the form wizard will move the user to the next step if the form is valid.

If you want to change the name of the submit button then you could change

<input type="submit">

to

<input type="submit" value="Next">

0👍

Reading the docs, I have concluded to this. Which means that in your urls.py you should change to that:

urlpatterns = [
    url(r'^contact/$', views.ContactWizard.as_view([DummyForm, OtherForm], instance_dict=[DummyForm(), OtherForm()]))
],
👤nik_m

Leave a comment