updated behavior of combobox, added state territory combobox

This commit is contained in:
David Kennedy 2025-01-10 06:50:36 -05:00
parent 560baed2e1
commit bb5f61fd98
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
2 changed files with 2 additions and 0 deletions

View file

@ -57,6 +57,7 @@ class RequestingEntityForm(RegistrarForm):
label="State, territory, or military post",
required=False,
choices=[("", "--Select--")] + DomainRequest.StateTerritoryChoices.choices,
widget=ComboboxWidget,
)
def __init__(self, *args, **kwargs):