Capitalization on verbose_name

This commit is contained in:
Erin 2024-04-15 16:52:23 -07:00
parent a76c4536f0
commit d81a916941
No known key found for this signature in database
GPG key ID: 1CAD275313C62460
2 changed files with 2 additions and 2 deletions

View file

@ -478,7 +478,7 @@ class DomainRequest(TimeStampedModel):
is_election_board = models.BooleanField( is_election_board = models.BooleanField(
null=True, null=True,
blank=True, blank=True,
verbose_name="Election office", verbose_name="election office",
help_text="Is your organization an election office?", help_text="Is your organization an election office?",
) )

View file

@ -33,7 +33,7 @@ class User(AbstractUser):
default=None, # Set the default value to None default=None, # Set the default value to None
null=True, # Allow the field to be null null=True, # Allow the field to be null
blank=True, # Allow the field to be blank blank=True, # Allow the field to be blank
verbose_name="User status" verbose_name="User status",
) )
domains = models.ManyToManyField( domains = models.ManyToManyField(