Merge pull request #1424 from cisagov/nl/1008-fed-agency-state-dropdowns

Issue #1008 - Federal Agency and State dropdowns
This commit is contained in:
CuriousX 2023-12-06 14:05:32 -07:00 committed by GitHub
commit b1e4575346
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 775 additions and 0 deletions

View file

@ -409,6 +409,7 @@ class DomainApplication(TimeStampedModel):
)
federal_agency = models.TextField(
choices=AGENCY_CHOICES,
null=True,
blank=True,
help_text="Federal agency",
@ -451,6 +452,7 @@ class DomainApplication(TimeStampedModel):
)
state_territory = models.CharField(
max_length=2,
choices=StateTerritoryChoices.choices,
null=True,
blank=True,
help_text="State, territory, or military post",