mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-31 09:43:54 +02:00
Merge pull request #1369 from cisagov/ky/required-optional-form-fields
Fix inconsistent representation of required/optional fields
This commit is contained in:
commit
939f34269f
28 changed files with 150 additions and 58 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue