修复了大部分5月6日学长们发现的bug。

移除了.venv和.idea文件夹。
对数据表进行了重构,部门部分代码重构by 老孟
初步将错误信息硬编码移除
添加了requirements
给新生增加了性别
This commit is contained in:
ladeng07
2022-05-11 02:34:49 +08:00
parent 9c960aa1da
commit a1f83fefcd
13 changed files with 271 additions and 292 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ from django.urls import path
from . import views
urlpatterns = [
path('comment/', views.comments.as_view()),
path('comment/', views.CommentView.as_view()),
]