mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-15 17:17:02 +02:00
Fix grammar
This commit is contained in:
parent
7d85dced0d
commit
e59f3db898
5 changed files with 7 additions and 7 deletions
|
@ -10,7 +10,7 @@
|
||||||
<h1>Senior official</h1>
|
<h1>Senior official</h1>
|
||||||
|
|
||||||
<p>Your senior official is a person within your organization who can
|
<p>Your senior official is a person within your organization who can
|
||||||
authorize domain requests. This person must be in a role of significant, executive responsibility within the organization. Read more about <a class="usa-link" rel="noopener noreferrer" target="_blank" href="{% public_site_url 'domains/eligibility/#you-must-have-approval-from-an-senior-official-within-your-organization' %}">who can serve as an senior official</a>.</p>
|
authorize domain requests. This person must be in a role of significant, executive responsibility within the organization. Read more about <a class="usa-link" rel="noopener noreferrer" target="_blank" href="{% public_site_url 'domains/eligibility/#you-must-have-approval-from-a-senior-official-within-your-organization' %}">who can serve as a senior official</a>.</p>
|
||||||
|
|
||||||
{% if generic_org_type == "federal" or generic_org_type == "tribal" %}
|
{% if generic_org_type == "federal" or generic_org_type == "tribal" %}
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -14,7 +14,7 @@ We've reviewed your domain request, but we need more information about the senio
|
||||||
- {{ domain_request.senior_official.get_formatted_name }}
|
- {{ domain_request.senior_official.get_formatted_name }}
|
||||||
- {{ domain_request.senior_official.title }}
|
- {{ domain_request.senior_official.title }}
|
||||||
|
|
||||||
We expect an senior official to be someone in a role of significant, executive responsibility within the organization. Our guidelines are open-ended to accommodate the wide variety of government organizations that are eligible for .gov domains, but the person you listed does not meet our expectations for your type of organization. Read more about our guidelines for senior officials. <https://get.gov/domains/eligibility/>
|
We expect a senior official to be someone in a role of significant, executive responsibility within the organization. Our guidelines are open-ended to accommodate the wide variety of government organizations that are eligible for .gov domains, but the person you listed does not meet our expectations for your type of organization. Read more about our guidelines for senior officials. <https://get.gov/domains/eligibility/>
|
||||||
|
|
||||||
|
|
||||||
ACTION NEEDED
|
ACTION NEEDED
|
||||||
|
|
|
@ -1288,7 +1288,7 @@ class TestContact(TestCase):
|
||||||
# test for a contact which has one user defined
|
# test for a contact which has one user defined
|
||||||
self.assertFalse(self.contact.has_more_than_one_join("user"))
|
self.assertFalse(self.contact.has_more_than_one_join("user"))
|
||||||
self.assertTrue(self.contact.has_more_than_one_join("senior_official"))
|
self.assertTrue(self.contact.has_more_than_one_join("senior_official"))
|
||||||
# test for a contact which is assigned as an senior official on a domain request
|
# test for a contact which is assigned as a senior official on a domain request
|
||||||
self.assertFalse(self.contact_as_so.has_more_than_one_join("senior_official"))
|
self.assertFalse(self.contact_as_so.has_more_than_one_join("senior_official"))
|
||||||
self.assertTrue(self.contact_as_so.has_more_than_one_join("submitted_domain_requests"))
|
self.assertTrue(self.contact_as_so.has_more_than_one_join("submitted_domain_requests"))
|
||||||
|
|
||||||
|
|
|
@ -1097,7 +1097,7 @@ class TestDomainSeniorOfficial(TestDomainOverview):
|
||||||
self.assertContains(page, "Testy")
|
self.assertContains(page, "Testy")
|
||||||
|
|
||||||
def test_domain_edit_senior_official_in_place(self):
|
def test_domain_edit_senior_official_in_place(self):
|
||||||
"""When editing an senior official for domain information and SO is not
|
"""When editing a senior official for domain information and SO is not
|
||||||
joined to any other objects"""
|
joined to any other objects"""
|
||||||
self.domain_information.senior_official = Contact(
|
self.domain_information.senior_official = Contact(
|
||||||
first_name="Testy", last_name="Tester", title="CIO", email="nobody@igorville.gov"
|
first_name="Testy", last_name="Tester", title="CIO", email="nobody@igorville.gov"
|
||||||
|
@ -1259,7 +1259,7 @@ class TestDomainSeniorOfficial(TestDomainOverview):
|
||||||
self.assertEqual("nobody@igorville.gov", self.domain_information.senior_official.email)
|
self.assertEqual("nobody@igorville.gov", self.domain_information.senior_official.email)
|
||||||
|
|
||||||
def test_domain_edit_senior_official_creates_new(self):
|
def test_domain_edit_senior_official_creates_new(self):
|
||||||
"""When editing an senior official for domain information and SO IS
|
"""When editing a senior official for domain information and SO IS
|
||||||
joined to another object"""
|
joined to another object"""
|
||||||
# set SO and Other Contact to the same Contact object
|
# set SO and Other Contact to the same Contact object
|
||||||
self.domain_information.senior_official = Contact(
|
self.domain_information.senior_official = Contact(
|
||||||
|
|
|
@ -2091,12 +2091,12 @@ class DomainRequestTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
def test_edit_senior_official_in_place(self):
|
def test_edit_senior_official_in_place(self):
|
||||||
"""When you:
|
"""When you:
|
||||||
1. edit an senior official which is not joined to another model,
|
1. edit a senior official which is not joined to another model,
|
||||||
2. then submit,
|
2. then submit,
|
||||||
the domain request is linked to the existing so, and the so updated."""
|
the domain request is linked to the existing so, and the so updated."""
|
||||||
|
|
||||||
# Populate the database with a domain request that
|
# Populate the database with a domain request that
|
||||||
# has an senior_official (so)
|
# has a senior_official (so)
|
||||||
# We'll do it from scratch
|
# We'll do it from scratch
|
||||||
so, _ = Contact.objects.get_or_create(
|
so, _ = Contact.objects.get_or_create(
|
||||||
first_name="Testy",
|
first_name="Testy",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue