diff options
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/forms_common.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py index 1ff9532e9..93f6b9ec6 100644 --- a/ishtar_common/forms_common.py +++ b/ishtar_common/forms_common.py @@ -258,7 +258,8 @@ class SimplePersonForm(NewItemForm): validators=[name_validator]) name = forms.CharField(label=_(u"Name"), max_length=30, validators=[name_validator]) - raw_name = forms.CharField(label=_(u"Raw name"), max_length=255) + raw_name = forms.CharField(label=_(u"Raw name"), max_length=255, + required=False) address = forms.CharField(label=_(u"Address"), widget=forms.Textarea, required=False) address_complement = forms.CharField(label=_(u"Address complement"), |