diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-04-08 02:52:33 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-04-08 02:52:33 +0200 | 
| commit | 6ef3f7f4310c0dd02e64c13a1dad6f47b74fdd88 (patch) | |
| tree | ff4ebeedbbf3ba631ddc56de15bfd81798c46be2 /ishtar_common/wizards.py | |
| parent | 6830db1837b2fdd7a8bb0e65d6dc9dfa1f8811da (diff) | |
| download | Ishtar-6ef3f7f4310c0dd02e64c13a1dad6f47b74fdd88.tar.bz2 Ishtar-6ef3f7f4310c0dd02e64c13a1dad6f47b74fdd88.zip | |
Adpat person form to new fields
Diffstat (limited to 'ishtar_common/wizards.py')
| -rw-r--r-- | ishtar_common/wizards.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index 0b121fd76..e974942b7 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -1112,10 +1112,14 @@ class ClosingWizard(Wizard):  class PersonWizard(Wizard):      model = models.Person +    wizard_templates = { +        'identity-person_creation': "ishtar/wizard/wizard_person.html"}  class PersonModifWizard(PersonWizard):      modification = True +    wizard_templates = { +        'identity-person_modification': "ishtar/wizard/wizard_person.html"}  class PersonDeletionWizard(DeletionWizard): | 
