diff options
Diffstat (limited to 'ishtar_common/wizards.py')
-rw-r--r-- | ishtar_common/wizards.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index ec684650f..55c9d0d9d 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -839,6 +839,12 @@ class PersonWizard(Wizard): class PersonModifWizard(PersonWizard): modification = True +class OrganizationWizard(Wizard): + model = models.Organization + +class OrganizationModifWizard(OrganizationWizard): + modification = True + class AccountWizard(Wizard): model = models.Person def get_formated_datas(self, forms): |