diff --git a/src/registrar/migrations/0007_domainapplication_more_organization_information_and_more.py b/src/registrar/migrations/0007_domainapplication_more_organization_information_and_more.py index 508b13cca..909b301ab 100644 --- a/src/registrar/migrations/0007_domainapplication_more_organization_information_and_more.py +++ b/src/registrar/migrations/0007_domainapplication_more_organization_information_and_more.py @@ -14,7 +14,7 @@ class Migration(migrations.Migration): name="more_organization_information", field=models.TextField( blank=True, - help_text="Further information about the government organization", + help_text="More information about your organization", null=True, ), ), diff --git a/src/registrar/models/domain_application.py b/src/registrar/models/domain_application.py index 898615e27..ca7f4d76f 100644 --- a/src/registrar/models/domain_application.py +++ b/src/registrar/models/domain_application.py @@ -293,7 +293,7 @@ class DomainApplication(TimeStampedModel): choices=OrganizationChoices.choices, null=True, blank=True, - help_text="Type of Organization", + help_text="Type of organization", ) federally_recognized_tribe = models.BooleanField( @@ -382,7 +382,7 @@ class DomainApplication(TimeStampedModel): more_organization_information = models.TextField( null=True, blank=True, - help_text="Further information about the government organization", + help_text="More information about your organization", ) authorizing_official = models.ForeignKey( diff --git a/src/registrar/templates/application_status.html b/src/registrar/templates/application_status.html index 99f4d215f..d329c4821 100644 --- a/src/registrar/templates/application_status.html +++ b/src/registrar/templates/application_status.html @@ -63,7 +63,7 @@ {% endif %} {% if domainapplication.organization_name %} - {% include "includes/summary_item.html" with title='Organization address' value=domainapplication address='true' %} + {% include "includes/summary_item.html" with title='Organization name and mailing address' value=domainapplication address='true' %} {% endif %} {% if domainapplication.type_of_work %} @@ -71,7 +71,7 @@ {% endif %} {% if domainapplication.more_organization_information %} - {% include "includes/summary_item.html" with title='Further information about the government organization' value=domainapplication.more_organization_information %} + {% include "includes/summary_item.html" with title='More information about your organization' value=domainapplication.more_organization_information %} {% endif %} {% if domainapplication.authorizing_official %}