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

@ -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(