From a6e614d8ad158135b23cb185cdc3eb61cac5ff8b Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Mon, 19 Oct 2020 17:56:26 +0000 Subject: [PATCH] Increase length-limit on the notes field of the Generic IPR disclosure form. Additional fix for #3104. Commit ready for merge. - Legacy-Id: 18622 --- ietf/ipr/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/ipr/forms.py b/ietf/ipr/forms.py index a0b4c8cf4..1d8bcc047 100644 --- a/ietf/ipr/forms.py +++ b/ietf/ipr/forms.py @@ -194,7 +194,7 @@ class GenericDisclosureForm(forms.Form): otherwise create a GenericIprDisclosure object.""" compliant = forms.BooleanField(label="This disclosure complies with RFC 3979", required=False) holder_legal_name = forms.CharField(max_length=255) - notes = forms.CharField(label="Additional notes", max_length=255,widget=forms.Textarea,required=False, strip=False) + notes = forms.CharField(label="Additional notes", max_length=4096,widget=forms.Textarea,required=False, strip=False) other_designations = forms.CharField(label="Designations for other contributions", max_length=255,required=False) holder_contact_name = forms.CharField(label="Name", max_length=255) holder_contact_email = forms.EmailField(label="Email")