diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-09 23:12:48 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-09 23:12:48 +0100 |
commit | b22a1a4644932761b64b7f32e16733669659d731 (patch) | |
tree | 9e6123738a6979c154e7ca86fb399e2332fb4ffb /ishtar_common/forms_common.py | |
parent | cffe9ccf886cd9300b999af989fc19da3e2a5f20 (diff) | |
parent | 54779a8fa14fa5213ef62b85c767545dd4f15257 (diff) | |
download | Ishtar-b22a1a4644932761b64b7f32e16733669659d731.tar.bz2 Ishtar-b22a1a4644932761b64b7f32e16733669659d731.zip |
Merge branch 'v0.9' into wheezy
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, |