mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-06-10 22:44:47 +02:00
Review feedback: required questions
This commit is contained in:
parent
aad63ea043
commit
fc6bff611b
2 changed files with 9 additions and 2 deletions
|
@ -162,13 +162,18 @@ class OrganizationContactForm(RegistrarForm):
|
|||
|
||||
class TypeOfWorkForm(RegistrarForm):
|
||||
type_of_work = forms.CharField(
|
||||
label="What type of work does your organization do?", widget=forms.Textarea()
|
||||
# label has to end in a space to get the label_suffix to show
|
||||
label="What type of work does your organization do? ",
|
||||
label_suffix=REQUIRED_SUFFIX,
|
||||
widget=forms.Textarea(),
|
||||
)
|
||||
|
||||
more_organization_information = forms.CharField(
|
||||
# label has to end in a space to get the label_suffix to show
|
||||
label="Describe how your organization is a government organization that is "
|
||||
"independent of a state government. Include links to authorizing legislation, "
|
||||
"applicable bylaws or charter, or other documentation to support your claims.",
|
||||
"applicable bylaws or charter, or other documentation to support your claims. ",
|
||||
label_suffix=REQUIRED_SUFFIX,
|
||||
widget=forms.Textarea(),
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue