Fix field helper text

This commit is contained in:
zandercymatics 2024-04-23 08:19:13 -06:00
parent 788a190a44
commit 42d2eb3ccd
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 2 additions and 3 deletions

View file

@ -82,7 +82,7 @@ class DomainInformation(TimeStampedModel):
choices=DomainRequest.OrgChoicesElectionOffice.choices,
null=True,
blank=True,
help_text="Type of organization - Election office",
help_text="\"Election\" appears after the org type if it's an election office.",
)
federally_recognized_tribe = models.BooleanField(
@ -115,7 +115,6 @@ class DomainInformation(TimeStampedModel):
null=True,
blank=True,
verbose_name="election office",
help_text="Is your organization an election office?",
)
organization_name = models.CharField(

View file

@ -496,7 +496,7 @@ class DomainRequest(TimeStampedModel):
choices=OrgChoicesElectionOffice.choices,
null=True,
blank=True,
help_text="Type of organization - Election office",
help_text="\"Election\" appears after the org type if it's an election office.",
)
federally_recognized_tribe = models.BooleanField(