mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-31 09:43:54 +02:00
Merge pull request #1424 from cisagov/nl/1008-fed-agency-state-dropdowns
Issue #1008 - Federal Agency and State dropdowns
This commit is contained in:
commit
b1e4575346
3 changed files with 775 additions and 0 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue