From c84d7c78bf1a0504a058d0018a01a52261643351 Mon Sep 17 00:00:00 2001
From: Neil Martinsen-Burrell
Date: Tue, 28 Feb 2023 12:52:01 -0600
Subject: [PATCH] Use asterisks too on one question pages
---
src/registrar/templates/application_dotgov_domain.html | 4 ++--
src/registrar/templates/application_org_federal.html | 6 ++----
src/registrar/templates/application_org_type.html | 5 ++---
src/registrar/templates/application_other_contacts.html | 5 +++++
src/registrar/templates/application_purpose.html | 3 +--
src/registrar/templates/application_review.html | 6 +++++-
6 files changed, 17 insertions(+), 12 deletions(-)
diff --git a/src/registrar/templates/application_dotgov_domain.html b/src/registrar/templates/application_dotgov_domain.html
index 2c6900e18..91a68fcbf 100644
--- a/src/registrar/templates/application_dotgov_domain.html
+++ b/src/registrar/templates/application_dotgov_domain.html
@@ -38,7 +38,7 @@
- This question is required.
{% endblock %}
{% block form_required_fields_help_text %}
-{# commented out so it does not appear on this page #}
+ * This question is required.
{% endblock %}
diff --git a/src/registrar/templates/application_review.html b/src/registrar/templates/application_review.html
index 0808b2c39..8f139e4cc 100644
--- a/src/registrar/templates/application_review.html
+++ b/src/registrar/templates/application_review.html
@@ -1,6 +1,10 @@
{% extends 'application_form.html' %}
{% load static url_helpers %}
+{% block form_required_fields_help_text %}
+{# there are no required fields on this page so don't show this #}
+{% endblock %}
+
{% block form_fields %}
{% for step in steps.all|slice:":-1" %}
{% endfor %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}