Setting up Django Form Wizard
问题 I'm attempting to set up a Django Form Wizard, but I'm having trouble getting it to work. I've followed the example, from the Django website, but can't get anything to work. When I go to the URL that should have my multistep form, only the template html thats extended shows up. What am I doing wrong here? FORMS.PY class ScheduleDate(forms.Form): date = forms.CharField() class ScheduleTime(forms.Form): time = forms.CharField() VIEWS.PY FORMS =[('date', ScheduleDate), ('time', ScheduleTime)]