教程模块

This commit is contained in:
2025-03-03 22:10:45 +08:00
parent fd46f49c20
commit d3ffd27f00
14 changed files with 161 additions and 11 deletions

View File

@@ -4,7 +4,7 @@ from django.contrib.auth.models import AbstractUser
class RoleChoices(models.TextChoices):
SUPER = "sup er", "超级管理员"
SUPER = "super", "超级管理员"
ADMIN = "admin", "管理员"
NORMAL = "normal", "普通"