增删了enroll模型的字段,变更了类名的命名

This commit is contained in:
ygm1881
2022-05-07 00:10:15 +08:00
parent b31d086522
commit 43e7dc8a62
6 changed files with 52 additions and 5024 deletions
+3 -3
View File
@@ -4,8 +4,8 @@ from . import views
# from rest_framework.routers import DefaultRouter
urlpatterns = [
path("department/", views.department_message.as_view()),
path("sign_up/", views.sign_up.as_view()),
path("sign_up/verification_code/", views.send_email.as_view()),
path("department/", views.DepartmentMessageView.as_view()),
path("sign_up/", views.SignUpView.as_view()),
path("sign_up/verification_code/", views.SendEmailView.as_view()),
# path("sign_up/<string:pk>", views.Sign_in.as_view({"get": "get"}))
]