Merge branch 'main' into za/1001-update-to-use-sentence-case

This commit is contained in:
zandercymatics 2023-12-07 07:55:27 -07:00
commit 5df42a4d16
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
9 changed files with 924 additions and 32 deletions

View file

@ -400,6 +400,7 @@ class DomainApplication(TimeStampedModel):
)
federal_agency = models.TextField(
choices=AGENCY_CHOICES,
null=True,
blank=True,
help_text="Federal agency",
@ -442,6 +443,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",