From 6b4c6e9f376522ad1b06ce52550a8b55d69b225f Mon Sep 17 00:00:00 2001 From: Kristina Yin Date: Wed, 29 Nov 2023 20:30:15 -0800 Subject: [PATCH] trying another way of getting rid of required sentence for no other contacts page --- src/registrar/templates/application_form.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/registrar/templates/application_form.html b/src/registrar/templates/application_form.html index 53f8d7a52..744f4e5f2 100644 --- a/src/registrar/templates/application_form.html +++ b/src/registrar/templates/application_form.html @@ -48,12 +48,12 @@ {% block form_instructions %} {% endblock %} -{% block form_required_fields_help_text %} - {% 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." %} +{% if steps.current != "no_other_contacts" %} + {% block form_required_fields_help_text %} {% include "includes/required_fields.html" %} - {% endif %} -{% endblock %} + {% endblock %} +{% endif %}
{% csrf_token %}