Fed agency and state are now dropdowns

This commit is contained in:
CocoByte 2023-11-29 16:01:58 -07:00
parent 2f32ed9d8a
commit dd673a2f58
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F
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",