mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-06-10 06:24:45 +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):
|
class TypeOfWorkForm(RegistrarForm):
|
||||||
type_of_work = forms.CharField(
|
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(
|
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 "
|
label="Describe how your organization is a government organization that is "
|
||||||
"independent of a state government. Include links to authorizing legislation, "
|
"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(),
|
widget=forms.Textarea(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
|
|
||||||
{% block form_content %}
|
{% block form_content %}
|
||||||
|
|
||||||
|
{% include "includes/required_fields.html" %}
|
||||||
|
|
||||||
<form id="step__{{steps.current}}" class="usa-form usa-form--large" method="post" novalidate>
|
<form id="step__{{steps.current}}" class="usa-form usa-form--large" method="post" novalidate>
|
||||||
<div class="usa-form-group">
|
<div class="usa-form-group">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue