Merge pull request #1369 from cisagov/ky/required-optional-form-fields

Fix inconsistent representation of required/optional fields
This commit is contained in:
Kristina Yin 2023-12-05 13:34:50 -08:00 committed by GitHub
commit 939f34269f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 150 additions and 58 deletions

View file

@ -442,7 +442,7 @@ class DomainApplication(TimeStampedModel):
address_line2 = models.TextField(
null=True,
blank=True,
help_text="Street address line 2",
help_text="Street address line 2 (optional)",
)
city = models.TextField(
null=True,
@ -465,7 +465,7 @@ class DomainApplication(TimeStampedModel):
urbanization = models.TextField(
null=True,
blank=True,
help_text="Urbanization (Puerto Rico only)",
help_text="Urbanization (required for Puerto Rico only)",
)
about_your_organization = models.TextField(
@ -545,7 +545,7 @@ class DomainApplication(TimeStampedModel):
anything_else = models.TextField(
null=True,
blank=True,
help_text="Anything else we should know?",
help_text="Anything else?",
)
is_policy_acknowledged = models.BooleanField(