diff options
Diffstat (limited to 'ishtar_common/views.py')
-rw-r--r-- | ishtar_common/views.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py index fb51445f2..ee7fc1ee7 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -308,7 +308,11 @@ account_management_wizard = wizards.AccountWizard.as_view( ) account_creation_wizard = wizards.AccountWizard.as_view( - account_wizard_steps, + [ + ("account-account_management", forms.AccountForm), + ("profile-account_management", forms.ProfileFormset), + ("final-account_management", forms.FinalAccountForm), + ], label=_("Account creation"), url_name="account_creation", ) |