From 71e46c79257479a104e23f9dd0a3ed11ad39ff2c Mon Sep 17 00:00:00 2001 From: Rachid Mrad Date: Wed, 11 Sep 2024 20:17:25 -0400 Subject: [PATCH] fix Organization sidenav links --- src/registrar/templates/domain_sidebar.html | 2 +- src/registrar/views/domain_request.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/registrar/templates/domain_sidebar.html b/src/registrar/templates/domain_sidebar.html index b6a46ca31..0942e5751 100644 --- a/src/registrar/templates/domain_sidebar.html +++ b/src/registrar/templates/domain_sidebar.html @@ -12,7 +12,7 @@ {% if not portfolio %} {% with url_name="domain-org-name-address" %} - {% include "includes/domain_sidenav_item.html" with item_text="Organization name" %} + {% include "includes/domain_sidenav_item.html" with item_text="Organization" %} {% endwith %} {% endif %} diff --git a/src/registrar/views/domain_request.py b/src/registrar/views/domain_request.py index 9bb78bbc2..e681d92cb 100644 --- a/src/registrar/views/domain_request.py +++ b/src/registrar/views/domain_request.py @@ -85,7 +85,7 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView): Step.TRIBAL_GOVERNMENT: _("Tribal government"), Step.ORGANIZATION_FEDERAL: _("Federal government branch"), Step.ORGANIZATION_ELECTION: _("Election office"), - Step.ORGANIZATION_CONTACT: _("Organization name"), + Step.ORGANIZATION_CONTACT: _("Organization"), Step.ABOUT_YOUR_ORGANIZATION: _("About your organization"), Step.SENIOR_OFFICIAL: _("Senior official"), Step.CURRENT_SITES: _("Current websites"),