From 150a59cdfc7a44ebd4ce68a92015aed6be55ede9 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Wed, 23 Oct 2024 14:02:31 -0600 Subject: [PATCH] Update portfolio_request_review_steps.html --- .../templates/includes/portfolio_request_review_steps.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/registrar/templates/includes/portfolio_request_review_steps.html b/src/registrar/templates/includes/portfolio_request_review_steps.html index 3f00f911c..c2bdb18cc 100644 --- a/src/registrar/templates/includes/portfolio_request_review_steps.html +++ b/src/registrar/templates/includes/portfolio_request_review_steps.html @@ -12,10 +12,14 @@ {% with title=form_titles|get_item:step value=domain_request.portfolio.organization_name %} {% include "includes/summary_item.html" with title=title value=value heading_level=heading_level editable=is_editable edit_link=domain_request_url %} {% endwith %} + {% if domain_request.portfolio.city and domain_request.portfolio.state_territory %} +

{{domain_request.portfolio.city}}, {{domain_request.portfolio.state_territory}}

+ {% endif %} {% elif domain_request.sub_organization %} {% with title=form_titles|get_item:step value=domain_request.sub_organization %} {% include "includes/summary_item.html" with title=title value=value heading_level=heading_level editable=is_editable edit_link=domain_request_url %} {% endwith %} + {% comment %} We don't have city or state_territory for suborganizations yet, so no data should display {% endcomment %} {% elif domain_request.requested_suborganization and domain_request.suborganization_city and domain_request.suborganization_state_territory %} {% with title=form_titles|get_item:step value=domain_request.requested_suborganization %} {% include "includes/summary_item.html" with title=title value=value heading_level=heading_level editable=is_editable edit_link=domain_request_url %}