Visgean Skeloru
Visgean Skeloru

Reputation: 2263

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).

Upvotes: 30

Views: 8648

Answers (1)

xxx
xxx

Reputation: 1485

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

Upvotes: 34

Related Questions