Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where did Django form wizard go in django 1.8?

There is a documentation about form wizard for version 1.7 but not for 1.8. I have looked at release notes and there is no mention of this. So where did it go? (Also there seems to be no class named SessionWizardView anywhere in 1.8).

like image 565
Visgean Skeloru Avatar asked Apr 26 '15 22:04

Visgean Skeloru


1 Answers

The wizard is part of the formtools package which has been split off into a separate repository.

New project: https://github.com/django/django-formtools/

More info: https://docs.djangoproject.com/en/1.8/releases/1.8/#removal-of-django-contrib-formtools

like image 175
xxx Avatar answered Oct 17 '22 22:10

xxx