diff --git a/src/registrar/forms/domain_request_wizard.py b/src/registrar/forms/domain_request_wizard.py index e45b08837..ef47143ea 100644 --- a/src/registrar/forms/domain_request_wizard.py +++ b/src/registrar/forms/domain_request_wizard.py @@ -319,8 +319,8 @@ class AboutYourOrganizationForm(RegistrarForm): widget=forms.Textarea(), validators=[ MaxLengthValidator( - 1000, - message="Response must be less than 1000 characters.", + 2000, + message="Response must be less than 2000 characters.", ) ], error_messages={"required": ("Enter more information about your organization.")}, @@ -830,8 +830,8 @@ class AnythingElseForm(RegistrarForm): widget=forms.Textarea(), validators=[ MaxLengthValidator( - 1000, - message="Response must be less than 1000 characters.", + 2000, + message="Response must be less than 2000 characters.", ) ], ) diff --git a/src/registrar/templates/domain_request_about_your_organization.html b/src/registrar/templates/domain_request_about_your_organization.html index 9be8626aa..08033f7a7 100644 --- a/src/registrar/templates/domain_request_about_your_organization.html +++ b/src/registrar/templates/domain_request_about_your_organization.html @@ -19,7 +19,7 @@ {% endblock %} {% block form_fields %} - {% with attr_maxlength=1000 add_label_class="usa-sr-only" %} + {% with attr_maxlength=2000 add_label_class="usa-sr-only" %} {% input_with_errors forms.0.about_your_organization %} {% endwith %} {% endblock %} diff --git a/src/registrar/templates/domain_request_anything_else.html b/src/registrar/templates/domain_request_anything_else.html index 326f9a5cf..dbeb10cac 100644 --- a/src/registrar/templates/domain_request_anything_else.html +++ b/src/registrar/templates/domain_request_anything_else.html @@ -13,7 +13,7 @@ {% block form_fields %} - {% with add_label_class="usa-sr-only" attr_maxlength=1000 %} + {% with attr_maxlength=2000 add_label_class="usa-sr-only" %} {% input_with_errors forms.0.anything_else %} {% endwith %} {% endblock %}