diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-09 23:08:51 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-09 23:08:51 +0100 |
commit | c2d86b659a9ad00b1e2cb0485e1310504c8fd03c (patch) | |
tree | d95d1ca9e9971b465f235cbb86091cd2cf3c7325 /ishtar_common/forms_common.py | |
parent | 1c381564ea9ed133f73e0b330468b204e7a034f1 (diff) | |
parent | 53f0a5c95c34c0db67528422583dc3e90f20f705 (diff) | |
download | Ishtar-c2d86b659a9ad00b1e2cb0485e1310504c8fd03c.tar.bz2 Ishtar-c2d86b659a9ad00b1e2cb0485e1310504c8fd03c.zip |
Merge branch 'master' into v0.9
Diffstat (limited to 'ishtar_common/forms_common.py')
-rw-r--r-- | ishtar_common/forms_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py index e2c0e5db5..0ce87025c 100644 --- a/ishtar_common/forms_common.py +++ b/ishtar_common/forms_common.py @@ -370,7 +370,7 @@ class SimplePersonForm(ManageOldType, NewItemForm): form_label = _("Identity") associated_models = {'attached_to': models.Organization, 'title': models.TitleType} - title = forms.ChoiceField(label=_("Title"), choices=[]) + title = forms.ChoiceField(label=_("Title"), choices=[], required=False) salutation = forms.CharField(label=_("Salutation"), max_length=200, required=False) surname = forms.CharField(label=_(u"Surname"), max_length=50, |