mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-06-09 22:14:43 +02:00
Added school district to list of org types
This commit is contained in:
parent
34ec5996c0
commit
3ad810ee7d
1 changed files with 3 additions and 1 deletions
|
@ -96,7 +96,7 @@ class DomainApplication(TimeStampedModel):
|
||||||
FEDERAL = "federal", "Federal: an agency of the U.S. government's executive, legislative, or judicial branches"
|
FEDERAL = "federal", "Federal: an agency of the U.S. government's executive, legislative, or judicial branches"
|
||||||
INTERSTATE = "interstate", "Interstate: an organization of two or more states"
|
INTERSTATE = "interstate", "Interstate: an organization of two or more states"
|
||||||
STATE_OR_TERRITORY = "state_or_territory", (
|
STATE_OR_TERRITORY = "state_or_territory", (
|
||||||
"State or Territory: one of the 50 U.S. states, the District of "
|
"State or territory: one of the 50 U.S. states, the District of "
|
||||||
"Columbia, American Samoa, Guam, Northern Mariana Islands, "
|
"Columbia, American Samoa, Guam, Northern Mariana Islands, "
|
||||||
"Puerto Rico, or the U.S. Virgin Islands"
|
"Puerto Rico, or the U.S. Virgin Islands"
|
||||||
)
|
)
|
||||||
|
@ -108,6 +108,8 @@ class DomainApplication(TimeStampedModel):
|
||||||
CITY = "city", "City: a city, town, township, village, etc."
|
CITY = "city", "City: a city, town, township, village, etc."
|
||||||
SPECIAL_DISTRICT = "special_district", (
|
SPECIAL_DISTRICT = "special_district", (
|
||||||
"Special district: an independent organization within a single state"
|
"Special district: an independent organization within a single state"
|
||||||
|
SCHOOL_DISTRICT = "school_district", (
|
||||||
|
"School district: a school district that is not part of a local government"
|
||||||
)
|
)
|
||||||
|
|
||||||
class BranchChoices(models.TextChoices):
|
class BranchChoices(models.TextChoices):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue