From 7f7a8540080e2e8a8bf3648a04fdcfd34aa7f67f Mon Sep 17 00:00:00 2001 From: Dragon Dave McKee Date: Wed, 26 Jun 2024 15:33:11 +0100 Subject: [PATCH] Increase maxlength for 9 principles to half a megabyte --- transactional_licence_form/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transactional_licence_form/forms.py b/transactional_licence_form/forms.py index 2a2fe72c9..3d813bd37 100644 --- a/transactional_licence_form/forms.py +++ b/transactional_licence_form/forms.py @@ -242,7 +242,7 @@ def layout(self): principles_statement = fields.FCLCharField( label="29. Please describe how you will meet the 9 principles as terms.", - widget=forms.Textarea(attrs={"maxlength": 5000}), + widget=forms.Textarea(attrs={"maxlength": 500000}), )