summaryrefslogtreecommitdiff
path: root/ishtar_common/forms_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/forms_common.py')
-rw-r--r--ishtar_common/forms_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py
index 26c463189..9be147871 100644
--- a/ishtar_common/forms_common.py
+++ b/ishtar_common/forms_common.py
@@ -662,7 +662,7 @@ class BaseOrganizationPersonForm(forms.ModelForm):
class PersonForm(SimplePersonForm):
person_types = forms.MultipleChoiceField(
- label=_("Person type"), choices=[],
+ label=_("Person type"), choices=[], required=False,
widget=forms.CheckboxSelectMultiple)
def __init__(self, *args, **kwargs):
@@ -706,7 +706,7 @@ class PersonTypeForm(ManageOldType, forms.Form):
base_model = 'person_type'
associated_models = {'person_type': models.PersonType}
person_type = forms.MultipleChoiceField(
- label=_("Person type"), choices=[],
+ label=_("Person type"), choices=[], required=False,
widget=forms.CheckboxSelectMultiple)
def __init__(self, *args, **kwargs):