mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-18 10:29:23 +02:00
Capitalization on verbose_name
This commit is contained in:
parent
a76c4536f0
commit
d81a916941
2 changed files with 2 additions and 2 deletions
|
@ -478,7 +478,7 @@ class DomainRequest(TimeStampedModel):
|
|||
is_election_board = models.BooleanField(
|
||||
null=True,
|
||||
blank=True,
|
||||
verbose_name="Election office",
|
||||
verbose_name="election office",
|
||||
help_text="Is your organization an election office?",
|
||||
)
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ class User(AbstractUser):
|
|||
default=None, # Set the default value to None
|
||||
null=True, # Allow the field to be null
|
||||
blank=True, # Allow the field to be blank
|
||||
verbose_name="User status"
|
||||
verbose_name="User status",
|
||||
)
|
||||
|
||||
domains = models.ManyToManyField(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue