Mr/form updates (#409)

* Text updates

* Text updates

* Text updates
This commit is contained in:
Michelle Rago 2023-02-14 14:14:50 -05:00 committed by GitHub
parent d6c7b225f5
commit 5b069e60d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -159,17 +159,17 @@ class OrganizationTypeForm(RegistrarForm):
class TribalGovernmentForm(RegistrarForm):
federally_recognized_tribe = forms.BooleanField(
label="Our organization is a federally-recognized tribe. ",
label="Federally-recognized tribe ",
required=False,
)
state_recognized_tribe = forms.BooleanField(
label="Our organization is a state-recognized tribe ",
label="State-recognized tribe ",
required=False,
)
tribe_name = forms.CharField(
label="Enter the tribe that you represent",
label="What is the name of the tribe you represent?",
error_messages={"required": "Enter the tribe you represent."},
)

View file

@ -6,7 +6,7 @@
{% input_with_errors forms.0.tribe_name %}
<fieldset class="usa-fieldset">
<legend class="usa-legend">
<p>Please check all that apply.
<p>Is your organization a federally-recognized tribe or a state-recognized tribe? Check all that apply.
<abbr class="usa-hint usa-hint--required" title="required">*</abbr></p>
</legend>
{% input_with_errors forms.0.federally_recognized_tribe %}

View file

@ -70,8 +70,8 @@ class ApplicationWizard(LoginRequiredMixin, TemplateView):
TITLES = {
Step.ORGANIZATION_TYPE: _("Type of organization"),
Step.TRIBAL_GOVERNMENT: _("Tribal government"),
Step.ORGANIZATION_FEDERAL: _("Type of organization: Federal"),
Step.ORGANIZATION_ELECTION: _("Type of organization: Election office"),
Step.ORGANIZATION_FEDERAL: _("Federal government branch"),
Step.ORGANIZATION_ELECTION: _("Election office"),
Step.ORGANIZATION_CONTACT: _("Organization name and mailing address"),
Step.TYPE_OF_WORK: _("Type of work"),
Step.AUTHORIZING_OFFICIAL: _("Authorizing official"),