diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py index 89d77e811..7e88b49da 100644 --- a/src/registrar/forms/application_wizard.py +++ b/src/registrar/forms/application_wizard.py @@ -610,7 +610,8 @@ class NoOtherContactsForm(RegistrarForm): required=True, # label has to end in a space to get the label_suffix to show label=( - "Please explain why there are no other employees from your organization we can contact to help us assess your eligibility for a .gov domain." + "Please explain why there are no other employees from your organization " + "we can contact to help us assess your eligibility for a .gov domain." ), widget=forms.Textarea(), ) diff --git a/src/registrar/templates/django/forms/label.html b/src/registrar/templates/django/forms/label.html index 9ad4b021e..aa7f68032 100644 --- a/src/registrar/templates/django/forms/label.html +++ b/src/registrar/templates/django/forms/label.html @@ -7,10 +7,11 @@ {% else %} {{ field.label }} {% endif %} - {% if widget.attrs.required %} - {% if field.label != "I read and agree to the requirements for operating .gov domains." %} - * - {% endif %} + + {% if widget.attrs.required %} + {% if field.label == "I read and agree to the requirements for operating .gov domains." %} + * {% endif %} + {% endif %}