diff --git a/src/registrar/templates/application_dotgov_domain.html b/src/registrar/templates/application_dotgov_domain.html index 23607c2a5..b9aafc9d2 100644 --- a/src/registrar/templates/application_dotgov_domain.html +++ b/src/registrar/templates/application_dotgov_domain.html @@ -20,7 +20,7 @@ meets our requirements. We’ll work with you to find the best domain for your organization.

-

Here are a few domain examples for your type of organization.

+

Here are domain examples and more guidance for your type of organization.

{% include "includes/domain_example.html" %}
@@ -84,4 +84,4 @@

If you’re not sure this is the domain you want, that’s okay. You can change it later.

-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/src/registrar/templates/includes/domain_example.html b/src/registrar/templates/includes/domain_example.html index 591049412..d222acfc9 100644 --- a/src/registrar/templates/includes/domain_example.html +++ b/src/registrar/templates/includes/domain_example.html @@ -2,85 +2,91 @@ {% if federal_type == 'executive' %}

Examples:

{% elif federal_type == 'judicial' %}

Examples:

{% elif federal_type == 'legislative' %}

Examples:

{% endif %} {% elif organization_type == 'interstate' %}

Examples:

{% elif organization_type == 'state_or_territory' %}

State .gov domains must include the two-letter state abbreviation or clearly spell out the state name.

Examples:

{% elif organization_type == 'tribal' %}

Tribal domains may include the suffix -nsn, for native sovereign nation.

Examples:

{% elif organization_type == 'county' %} -

Most county .gov domains must include the two-letter state abbreviation or the full state name. County names that aren’t shared by any other city, county, parish, town, borough, village or equivalent in the U.S., at the time a domain is granted, can be requested without referring to the state. Counties can include “county” in their domain to distinguish it from other places with similar names. We use the Census Bureau’s National Places Gazetteer Files to determine if county names are unique.

+

Most county .gov domains must include the two-letter state abbreviation or the full state name. County names that aren’t shared by any other city, county, parish, town, borough, village or equivalent in the U.S., at the time a domain is granted, can be requested without referring to the state. Counties can include “county” in their domain to distinguish it from other places with similar names. We use the Census Bureau’s National Places Gazetteer Files to determine if county names are unique.

Examples:

{% elif organization_type == 'city' %} -

Most city domains must include the two-letter state abbreviation or clearly spell out the state name. Using phrases like “City of” or “Town of” is optional.

+

Most city domains must include the two-letter state abbreviation or clearly spell out the state name unless city or county exceptions apply. Using phrases like “City of” or “Town of” is optional.

Examples:

-

Some cities don’t have to refer to their state. +

Some cities don’t have to refer to their state.

{% elif organization_type == 'special_district' %} -

Domain names must represent your organization or institutional name, not solely the services you provide. It also needs to include your two-letter state abbreviation or clearly spell out the state name.

+

Domain names must represent your organization or institutional name, not solely the services you provide. It also needs to include your two-letter state abbreviation or clearly spell out the state name unless city or county exceptions apply.

Examples:

{% elif organization_type == 'school_district' %} diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index 730d55e04..b4fc3c1cb 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -914,7 +914,7 @@ class DomainApplicationTests(TestWithUser, WebTest): # Go back to dotgov domain page to test the dynamic text changed self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id) dotgov_page = election_page.click(str(self.TITLES["dotgov_domain"]), index=0) - self.assertContains(dotgov_page, "BlufftonIndiana.gov") + self.assertContains(dotgov_page, "CityofEudoraKS.gov") self.assertNotContains(dotgov_page, "medicare.gov") def test_application_formsets(self):