Open
Description
From the source code I understand that it is possible to reset formtools via
See:
django-formtools/formtools/wizard/views.py
Line 652 in dd0f278
This would work for urls like https://[...]formtools-url?reset
Unfortunately this doesn't work for named wizards since the step_url is not None. Setting it to None typically does not work with the url parameters https://[...]formtools-url/<step>/
I think adding the following code could solve this.
elif step_url == 'reset':
self.storage.reset()
self.storage.current_step = self.steps.first
After which urls like https://[...]formtools-url/reset/
could reset the form.
Metadata
Metadata
Assignees
Labels
No labels