Lowercase verbose_names to fit django standards

This commit is contained in:
Erin 2024-04-16 11:13:05 -07:00
parent f37d98df58
commit 12526c13f7
No known key found for this signature in database
GPG key ID: 1CAD275313C62460
6 changed files with 26 additions and 26 deletions

View file

@ -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?",
)
@ -551,14 +551,14 @@ class DomainRequest(TimeStampedModel):
choices=StateTerritoryChoices.choices,
null=True,
blank=True,
verbose_name="State / territory",
verbose_name="state / territory",
help_text="State, territory, or military post",
)
zipcode = models.CharField(
max_length=10,
null=True,
blank=True,
verbose_name="Zip code",
verbose_name="zip code",
help_text="Zip code",
db_index=True,
)
@ -660,7 +660,7 @@ class DomainRequest(TimeStampedModel):
null=True,
blank=True,
default=None,
verbose_name="Submitted at",
verbose_name="submitted at",
help_text="Date submitted",
)