diff --git a/src/registrar/templates/includes/ao_example.html b/src/registrar/templates/includes/ao_example.html index dfdbb3775..85df174aa 100644 --- a/src/registrar/templates/includes/ao_example.html +++ b/src/registrar/templates/includes/ao_example.html @@ -1,50 +1,62 @@ {% if is_federal %} {% if federal_type == 'executive' %} -
Domain requests from executive branch agencies must be authorized by Chief Information Officers or agency heads.
-Domain requests from executive branch agencies are subject to guidance issued by the U.S. Office of Management and Budget.
+Domain requests from executive branch federal agencies must be authorized by the agency's CIO or the head of the agency.
+See OMB Memorandum M-23-10 for more information.
{% elif federal_type == 'judicial' %} -Domain requests from the U.S. Supreme Court must be authorized by the director of information technology for the U.S. Supreme Court.
-Domain requests from other judicial branch agencies must be authorized by the director or Chief Information Officer of the Administrative Office (AO) of the United States Courts. -
+Domain requests for judicial branch federal agencies, except the U.S. Supreme Court, must be authorized by the director or CIO of the Administrative Office (AO) of the United States Courts.
+Domain requests from the U.S. Supreme Court must be authorized by the director of information technology for the U.S. Supreme Court.
{% elif federal_type == 'legislative' %} -Domain requests from the U.S. Senate must come from the Senate Sergeant at Arms.
+Domain requests from the U.S. House of Representatives must come from the House Chief Administrative Officer. +
Domain requests from the U.S. Senate must come from the Senate Sergeant at Arms.
-Domain requests from legislative branch agencies must come from the agency’s head or Chief Information Officer.
-Domain requests from legislative commissions must come from the head of the commission, or the head or Chief Information Officer of the parent agency, if there is one. -
+Domain requests from the U.S. House of Representatives must come from the House Chief Administrative Officer.
+ +Domain requests from legislative branch agencies must come from the agency’s head or CIO.
+Domain requests from legislative commissions must come from the head of the commission, or the head or CIO of the parent agency, if there is one.
{% endif %} {% elif organization_type == 'city' %} -Domain requests from cities must be authorized by the mayor or the equivalent highest-elected official.
+Domain requests from cities must be authorized by someone in a role of significant, executive responsibility within the city (mayor, council president, city manager, township/village supervisor, select board chairperson, chief, senior technology officer, or equivalent).
{% elif organization_type == 'county' %} -Domain requests from counties must be authorized by the chair of the county commission or the equivalent highest-elected official.
+Domain requests from counties must be authorized by the commission chair or someone in a role of significant, executive responsibility within the county (county judge, county mayor, parish/borough president, senior technology officer, or equivalent). Other county-level offices (county clerk, sheriff, county auditor, comptroller) may qualify, as well, in some instances.
{% elif organization_type == 'interstate' %} -Domain requests from interstate organizations must be authorized by the highest-ranking executive (president, director, chair, or equivalent) or one of the state’s governors or Chief Information Officers.
+Domain requests from interstate organizations must be authorized by someone in a role of significant, executive responsibility within the organization (president, director, chair, senior technology officer, or equivalent) or one of the state’s governors or CIOs.
{% elif organization_type == 'school_district' %} -Domain requests from school district governments must be authorized by the highest-ranking executive (the chair of a school district’s board or a superintendent).
+Domain requests from school district governments must be authorized by someone in a role of significant, executive responsibility within the district (board chair, superintendent, senior technology officer, or equivalent).
{% elif organization_type == 'special_district' %} -Domain requests from special districts must be authorized by the highest-ranking executive (president, director, chair, or equivalent) or state Chief Information Officers for state-based organizations.
+Domain requests from special districts must be authorized by someone in a role of significant, executive responsibility within the district (CEO, chair, executive director, senior technology officer, or equivalent). +
{% elif organization_type == 'state_or_territory' %} -Domain requests from states and territories must be authorized by the governor or the state Chief Information Officer.
-Domain requests from state legislatures and courts must be authorized by an agency’s Chief Information Officer or highest-ranking executive.
+Domain requests from states and territories must be authorized by the governor or someone in a role of significant, executive responsibility within the agency (department secretary, senior technology officer, or equivalent).
+ +Domain requests from state legislatures and courts must be authorized by an agency’s CIO or someone in a role of significant, executive responsibility within the agency.
{% elif organization_type == 'tribal' %} -Domain requests from federally-recognized tribal governments must be authorized by the leader of the tribe, as recognized by the Bureau of Indian Affairs.
-Domain requests from state-recognized tribal governments must be authorized by the leader of the tribe, as determined by the state’s tribal recognition initiative.
+Domain requests from federally-recognized tribal governments must be authorized by the tribal leader the Bureau of Indian Affairs recognizes.
+Domain requests from state-recognized tribal governments must be authorized by the tribal leader the individual state recognizes.
{% endif %} diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index 3c98c5fe7..da6fe6205 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -804,7 +804,7 @@ class DomainApplicationTests(TestWithUser, WebTest): # ---- AO CONTACT PAGE ---- self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id) ao_page = org_contact_result.follow() - self.assertContains(ao_page, "Domain requests from executive branch agencies") + self.assertContains(ao_page, "Executive branch federal agencies") # Go back to organization type page and change type self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)