[Answered ]-Django wizardview: how to set up step data without validating the form

2👍

✅

Implement the WizardView.get_form_initial(step) method in you wizard view class.

This method gets step number as parameters and it should return dict for initial data for the form for that step.

Leave a comment