summaryrefslogtreecommitdiff
path: root/ishtar_common/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/views.py')
-rw-r--r--ishtar_common/views.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py
index 69e93a24f..4c83fd818 100644
--- a/ishtar_common/views.py
+++ b/ishtar_common/views.py
@@ -359,8 +359,7 @@ person_search_wizard = wizards.PersonSearch.as_view(
person_creation_wizard = wizards.PersonWizard.as_view(
[
- ("identity-person_creation", forms.SimplePersonForm),
- ("person_type-person_creation", forms.PersonTypeForm),
+ ("identity-person_creation", forms.PersonForm),
("final-person_creation", FinalForm),
],
label=_("New person"),
@@ -370,8 +369,7 @@ person_creation_wizard = wizards.PersonWizard.as_view(
person_modification_wizard = wizards.PersonModifWizard.as_view(
[
("selec-person_modification", forms.PersonFormSelection),
- ("identity-person_modification", forms.SimplePersonForm),
- ("person_type-person_creation", forms.PersonTypeForm),
+ ("identity-person_modification", forms.PersonForm),
("final-person_modification", FinalForm),
],
label=_("Person modification"),