mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-06-10 06:24:45 +02:00
Set optional fields to be optional
This commit is contained in:
parent
7f2df61bf8
commit
76b6256202
1 changed files with 7 additions and 2 deletions
|
@ -64,7 +64,10 @@ class OrganizationForm(forms.Form):
|
|||
class OrgContactForm(forms.Form):
|
||||
organization_name = forms.CharField(label="Organization Name")
|
||||
address_line1 = forms.CharField(label="Address line 1")
|
||||
address_line2 = forms.CharField(label="Address line 2")
|
||||
address_line2 = forms.CharField(
|
||||
required=False,
|
||||
label="Address line 2",
|
||||
)
|
||||
us_state = forms.CharField(label="State")
|
||||
zipcode = forms.CharField(label="ZIP code")
|
||||
|
||||
|
@ -80,7 +83,9 @@ class AuthorizingOfficialForm(forms.Form):
|
|||
phone = forms.CharField(label="Phone")
|
||||
|
||||
class CurrentSitesForm(forms.Form):
|
||||
current_site = forms.CharField(label="Enter your organization’s public website, if you have one. For example, www.city.com.")
|
||||
current_site = forms.CharField(
|
||||
required=False,
|
||||
label="Enter your organization’s public website, if you have one. For example, www.city.com.")
|
||||
|
||||
class DotGovDomainForm(forms.Form):
|
||||
dotgov_domain = forms.CharField(label="What .gov domain do you want?")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue