diff --git a/src/registrar/templates/application_status.html b/src/registrar/templates/application_status.html index c95f6a98d..2d59a32eb 100644 --- a/src/registrar/templates/application_status.html +++ b/src/registrar/templates/application_status.html @@ -84,6 +84,14 @@ {% include "includes/summary_item.html" with title='Current website for your organization' value=domainapplication.current_websites.all list='true' heading_level=heading_level %} {% endif %} + {% if domainapplication.requested_domain %} + {% include "includes/summary_item.html" with title='.gov domain' value=domainapplication.requested_domain heading_level=heading_level %} + {% endif %} + + {% if domainapplication.alternative_domains.all %} + {% include "includes/summary_item.html" with title='Alternative domains' value=domainapplication.alternative_domains.all list='true' heading_level=heading_level %} + {% endif %} + {% if domainapplication.purpose %} {% include "includes/summary_item.html" with title='Purpose of your domain' value=domainapplication.purpose heading_level=heading_level %} {% endif %} diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index 9ce44f674..af01676b4 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -1466,6 +1466,7 @@ class TestApplicationStatus(TestWithUser, WebTest): # click the "Manage" link detail_page = home_page.click("Manage") self.assertContains(detail_page, "city.gov") + self.assertContains(detail_page, "city1.gov") self.assertContains(detail_page, "Chief Tester") self.assertContains(detail_page, "testy@town.com") self.assertContains(detail_page, "Admin Tester") @@ -1504,6 +1505,7 @@ class TestApplicationStatus(TestWithUser, WebTest): # click the "Manage" link detail_page = home_page.click("Manage") self.assertContains(detail_page, "city.gov") + self.assertContains(detail_page, "city1.gov") self.assertContains(detail_page, "Chief Tester") self.assertContains(detail_page, "testy@town.com") self.assertContains(detail_page, "Admin Tester")