mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-23 11:16:07 +02:00
parent
d6c7b225f5
commit
5b069e60d3
3 changed files with 7 additions and 7 deletions
|
@ -159,17 +159,17 @@ class OrganizationTypeForm(RegistrarForm):
|
||||||
|
|
||||||
class TribalGovernmentForm(RegistrarForm):
|
class TribalGovernmentForm(RegistrarForm):
|
||||||
federally_recognized_tribe = forms.BooleanField(
|
federally_recognized_tribe = forms.BooleanField(
|
||||||
label="Our organization is a federally-recognized tribe. ",
|
label="Federally-recognized tribe ",
|
||||||
required=False,
|
required=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
state_recognized_tribe = forms.BooleanField(
|
state_recognized_tribe = forms.BooleanField(
|
||||||
label="Our organization is a state-recognized tribe ",
|
label="State-recognized tribe ",
|
||||||
required=False,
|
required=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
tribe_name = forms.CharField(
|
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."},
|
error_messages={"required": "Enter the tribe you represent."},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
{% input_with_errors forms.0.tribe_name %}
|
{% input_with_errors forms.0.tribe_name %}
|
||||||
<fieldset class="usa-fieldset">
|
<fieldset class="usa-fieldset">
|
||||||
<legend class="usa-legend">
|
<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>
|
<abbr class="usa-hint usa-hint--required" title="required">*</abbr></p>
|
||||||
</legend>
|
</legend>
|
||||||
{% input_with_errors forms.0.federally_recognized_tribe %}
|
{% input_with_errors forms.0.federally_recognized_tribe %}
|
||||||
|
|
|
@ -70,8 +70,8 @@ class ApplicationWizard(LoginRequiredMixin, TemplateView):
|
||||||
TITLES = {
|
TITLES = {
|
||||||
Step.ORGANIZATION_TYPE: _("Type of organization"),
|
Step.ORGANIZATION_TYPE: _("Type of organization"),
|
||||||
Step.TRIBAL_GOVERNMENT: _("Tribal government"),
|
Step.TRIBAL_GOVERNMENT: _("Tribal government"),
|
||||||
Step.ORGANIZATION_FEDERAL: _("Type of organization: Federal"),
|
Step.ORGANIZATION_FEDERAL: _("Federal government branch"),
|
||||||
Step.ORGANIZATION_ELECTION: _("Type of organization: Election office"),
|
Step.ORGANIZATION_ELECTION: _("Election office"),
|
||||||
Step.ORGANIZATION_CONTACT: _("Organization name and mailing address"),
|
Step.ORGANIZATION_CONTACT: _("Organization name and mailing address"),
|
||||||
Step.TYPE_OF_WORK: _("Type of work"),
|
Step.TYPE_OF_WORK: _("Type of work"),
|
||||||
Step.AUTHORIZING_OFFICIAL: _("Authorizing official"),
|
Step.AUTHORIZING_OFFICIAL: _("Authorizing official"),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue