mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-06-10 06:24:45 +02:00
Update state list, change to combo box
This commit is contained in:
parent
76b6256202
commit
3f8312e148
2 changed files with 7 additions and 2 deletions
|
@ -68,7 +68,10 @@ class OrgContactForm(forms.Form):
|
||||||
required=False,
|
required=False,
|
||||||
label="Address line 2",
|
label="Address line 2",
|
||||||
)
|
)
|
||||||
us_state = forms.CharField(label="State")
|
us_state = forms.ChoiceField(
|
||||||
|
label="State",
|
||||||
|
choices=[('AL', 'Alabama'), ('AK', 'Alaska'), ('AZ', 'Arizona'), ('AR', 'Arkansas'), ('CA', 'California'), ('CO', 'Colorado'), ('CT', 'Connecticut'), ('DE', 'Delaware'), ('DC', 'District of Columbia'), ('FL', 'Florida'), ('GA', 'Georgia'), ('HI', 'Hawaii'), ('ID', 'Idaho'), ('IL', 'Illinois'), ('IN', 'Indiana'), ('IA', 'Iowa'), ('KS', 'Kansas'), ('KY', 'Kentucky'), ('LA', 'Louisiana'), ('ME', 'Maine'), ('MD', 'Maryland'), ('MA', 'Massachusetts'), ('MI', 'Michigan'), ('MN', 'Minnesota'), ('MS', 'Mississippi'), ('MO', 'Missouri'), ('MT', 'Montana'), ('NE', 'Nebraska'), ('NV', 'Nevada'), ('NH', 'New Hampshire'), ('NJ', 'New Jersey'), ('NM', 'New Mexico'), ('NY', 'New York'), ('NC', 'North Carolina'), ('ND', 'North Dakota'), ('OH', 'Ohio'), ('OK', 'Oklahoma'), ('OR', 'Oregon'), ('PA', 'Pennsylvania'), ('RI', 'Rhode Island'), ('SC', 'South Carolina'), ('SD', 'South Dakota'), ('TN', 'Tennessee'), ('TX', 'Texas'), ('UT', 'Utah'), ('VT', 'Vermont'), ('VA', 'Virginia'), ('WA', 'Washington'), ('WV', 'West Virginia'), ('WI', 'Wisconsin'), ('WY', 'Wyoming'), ('AS', 'American Samoa'), ('GU', 'Guam'), ('MP', 'Northern Mariana Islands'), ('PR', 'Puerto Rico'), ('VI', 'Virgin Islands'),],
|
||||||
|
)
|
||||||
zipcode = forms.CharField(label="ZIP code")
|
zipcode = forms.CharField(label="ZIP code")
|
||||||
|
|
||||||
class AuthorizingOfficialForm(forms.Form):
|
class AuthorizingOfficialForm(forms.Form):
|
||||||
|
|
|
@ -30,7 +30,9 @@ of a larger entity. If so, enter information about your part of the larger entit
|
||||||
{{ wizard.form.address_line2|add_label_class:"usa-label" }}
|
{{ wizard.form.address_line2|add_label_class:"usa-label" }}
|
||||||
{{ wizard.form.address_line2|add_class:"usa-input" }}
|
{{ wizard.form.address_line2|add_class:"usa-input" }}
|
||||||
{{ wizard.form.us_state|add_label_class:"usa-label" }}
|
{{ wizard.form.us_state|add_label_class:"usa-label" }}
|
||||||
{{ wizard.form.us_state|add_class:"usa-input" }}
|
<div class="usa-combo-box">
|
||||||
|
{{ wizard.form.us_state|add_class:"usa-select" }}
|
||||||
|
</div>
|
||||||
{{ wizard.form.zipcode|add_label_class:"usa-label" }}
|
{{ wizard.form.zipcode|add_label_class:"usa-label" }}
|
||||||
{{ wizard.form.zipcode|add_class:"usa-input" }}
|
{{ wizard.form.zipcode|add_class:"usa-input" }}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue