diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py index 0db16c401..e180113c5 100644 --- a/src/registrar/forms/application_wizard.py +++ b/src/registrar/forms/application_wizard.py @@ -162,13 +162,18 @@ class OrganizationContactForm(RegistrarForm): class TypeOfWorkForm(RegistrarForm): type_of_work = forms.CharField( - label="What type of work does your organization do?", widget=forms.Textarea() + # label has to end in a space to get the label_suffix to show + label="What type of work does your organization do? ", + label_suffix=REQUIRED_SUFFIX, + widget=forms.Textarea(), ) more_organization_information = forms.CharField( + # label has to end in a space to get the label_suffix to show label="Describe how your organization is a government organization that is " "independent of a state government. Include links to authorizing legislation, " - "applicable bylaws or charter, or other documentation to support your claims.", + "applicable bylaws or charter, or other documentation to support your claims. ", + label_suffix=REQUIRED_SUFFIX, widget=forms.Textarea(), ) diff --git a/src/registrar/templates/application_type_of_work.html b/src/registrar/templates/application_type_of_work.html index 8bc0ddd6e..022abedc2 100644 --- a/src/registrar/templates/application_type_of_work.html +++ b/src/registrar/templates/application_type_of_work.html @@ -4,6 +4,8 @@ {% block form_content %} +{% include "includes/required_fields.html" %} +