adding (optional) text to anything else app page

This commit is contained in:
Kristina Yin 2023-11-28 19:02:13 -08:00
parent 98455cda52
commit 25a0ceb330
No known key found for this signature in database
GPG key ID: 9BB3845BB3A21584
2 changed files with 2 additions and 2 deletions

View file

@ -434,7 +434,7 @@ class DomainInformationAdmin(ListHeaderAdmin):
"No other employees from your organization?",
{"fields": ["no_other_contacts_rationale"]},
),
("Anything else we should know?", {"fields": ["anything_else"]}),
("Anything else we should know? (optional)", {"fields": ["anything_else"]}),
(
"Requirements for operating .gov domains",
{"fields": ["is_policy_acknowledged"]},

View file

@ -85,7 +85,7 @@ class ApplicationWizard(ApplicationWizardPermissionView, TemplateView):
Step.YOUR_CONTACT: _("Your contact information"),
Step.OTHER_CONTACTS: _("Other employees from your organization"),
Step.NO_OTHER_CONTACTS: _("No other employees from your organization?"),
Step.ANYTHING_ELSE: _("Anything else we should know?"),
Step.ANYTHING_ELSE: _("Anything else we should know? (optional)"),
Step.REQUIREMENTS: _("Requirements for operating .gov domains"),
Step.REVIEW: _("Review and submit your domain request"),
}