mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-06-09 22:14:43 +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. ",
|
||||
label_suffix=REQUIRED_SUFFIX,
|
||||
widget=forms.Textarea(),
|
||||
)
|
||||
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
{% block form_content %}
|
||||
|
||||
{% include "includes/required_fields.html" %}
|
||||
|
||||
<form id="step__{{steps.current}}" class="usa-form usa-form--large" method="post" novalidate>
|
||||
<div class="usa-form-group">
|
||||
{% csrf_token %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue