corrected typo in help_text

dev
Calum Andrew Morrell 2025-11-05 14:58:00 +00:00
parent ed3e3ef008
commit 1ac66b4697
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from django.db import models
class User(AbstractUser):
display_name = models.CharField(
max_length=200, help_test="Display name", blank=True, null=True
max_length=200, help_text="Display name", blank=True, null=True
)
def __str__(self):