diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py index 22d39e8bb..1982b341b 100644 --- a/src/registrar/forms/application_wizard.py +++ b/src/registrar/forms/application_wizard.py @@ -309,11 +309,10 @@ class OrganizationContactForm(RegistrarForm): ) return federal_agency -# TODO-446: Update name of form + variable naming +# TODO-446: Update name of form + variable naming + change label class TypeOfWorkForm(RegistrarForm): type_of_work = forms.CharField( - required=False, - label="TypeOfWork", + label="Type of work", widget=forms.Textarea(), validators=[ MaxLengthValidator( diff --git a/src/registrar/templates/application_type_of_work.html b/src/registrar/templates/application_type_of_work.html index 7bd02bf32..1bb3e7048 100644 --- a/src/registrar/templates/application_type_of_work.html +++ b/src/registrar/templates/application_type_of_work.html @@ -13,16 +13,15 @@
* This question is required.
{% endblock %} {% block form_required_fields_help_text %} -{# empty this block so it doesn't show on this page #} +*This question is required.
{% endblock %} {% block form_fields %} - {% with attr_maxlength=1000 %} - {% input_with_errors forms.0.type_of_work %} - {% endwith %} + {% with attr_maxlength=1000 add_label_class="usa-sr-only" %} + {% input_with_errors forms.0.type_of_work %} + {% endwith %} {% endblock %} \ No newline at end of file