Review feedback: required questions

This commit is contained in:
Neil Martinsen-Burrell 2023-01-12 10:28:55 -06:00
parent aad63ea043
commit fc6bff611b
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
2 changed files with 9 additions and 2 deletions

View file

@ -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(),
)