Merged in [18622] from rjsparks@nostrum.com:
Increase length-limit on the notes field of the Generic IPR disclosure form. Additional fix for #3104.
- Legacy-Id: 18637
Note: SVN reference [18622] has been migrated to Git commit a6e614d8ad
This commit is contained in:
commit
02050ac3e6
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue