Merge branch 'master' of gitlab.prodcontest.ru:team-15/project

This commit is contained in:
ITQ
2025-03-01 02:45:49 +03:00
10 changed files with 197 additions and 17 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ class User(BaseModel):
password = models.TextField(verbose_name="Пароль")
status = models.CharField(
max_length=10, choices=UserRole.choices, default=UserRole.STUDENT
max_length=10, choices=UserRole, default="student"
)
def __str__(self) -> str: