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.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py
index 6f0d01427..70727b243 100644
--- a/ishtar_common/forms_common.py
+++ b/ishtar_common/forms_common.py
@@ -426,9 +426,9 @@ class OrganizationForm(ManageOldType, NewItemForm):
precise_town = get_town_field(required=False)
country = forms.CharField(label=_("Country"), max_length=30, required=False)
email = forms.EmailField(label=_("Email"), required=False)
- phone = forms.CharField(label=_("Phone"), max_length=18, required=False)
+ phone = forms.CharField(label=_("Phone"), max_length=32, required=False)
mobile_phone = forms.CharField(
- label=_("Mobile phone"), max_length=18, required=False
+ label=_("Mobile phone"), max_length=32, required=False
)
def __init__(self, *args, **kwargs):
@@ -778,17 +778,17 @@ class SimplePersonForm(ManageOldType, NewItemForm):
phone_desc = forms.CharField(
label=_("Phone description"), max_length=300, required=False
)
- phone = forms.CharField(label=_("Phone"), max_length=18, required=False)
+ phone = forms.CharField(label=_("Phone"), max_length=32, required=False)
phone_desc2 = forms.CharField(
label=_("Phone description 2"), max_length=300, required=False
)
- phone2 = forms.CharField(label=_("Phone 2"), max_length=18, required=False)
+ phone2 = forms.CharField(label=_("Phone 2"), max_length=32, required=False)
phone_desc3 = forms.CharField(
label=_("Phone description 3"), max_length=300, required=False
)
- phone3 = forms.CharField(label=_("Phone 3"), max_length=18, required=False)
+ phone3 = forms.CharField(label=_("Phone 3"), max_length=32, required=False)
mobile_phone = forms.CharField(
- label=_("Mobile phone"), max_length=18, required=False
+ label=_("Mobile phone"), max_length=32, required=False
)
attached_to = forms.IntegerField(
label=_("Current organization"),