get rid of asterisk in no other contacts page

This commit is contained in:
Kristina Yin 2023-11-21 19:30:36 -08:00
parent 508b1c8c48
commit ddc1298651
No known key found for this signature in database
GPG key ID: 9BB3845BB3A21584
2 changed files with 6 additions and 4 deletions

View file

@ -610,8 +610,7 @@ class NoOtherContactsForm(RegistrarForm):
required=True, required=True,
# label has to end in a space to get the label_suffix to show # label has to end in a space to get the label_suffix to show
label=( label=(
"Please explain why there are no other employees from your organization" "Please explain why there are no other employees from your organization we can contact to help us assess your eligibility for a .gov domain."
" we can contact to help us assess your eligibility for a .gov domain."
), ),
widget=forms.Textarea(), widget=forms.Textarea(),
) )

View file

@ -9,8 +9,11 @@
{% endif %} {% endif %}
{% if widget.attrs.required %} {% if widget.attrs.required %}
{% if field.label != "I read and agree to the requirements for operating .gov domains." %} {% if field.label != "I read and agree to the requirements for operating .gov domains." %}
{% if field.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." %}
<abbr class="usa-hint usa-hint--required" title="required">*</abbr> <abbr class="usa-hint usa-hint--required" title="required">*</abbr>
{% endif %} {% endif %}
{% endif %} {% endif %}
{% endif %}
</{{ label_tag }}> </{{ label_tag }}>