打分上传后台
All checks were successful
Deploy to Server / deploy (push) Successful in 15s

This commit is contained in:
jeremygan2021
2026-03-12 13:49:47 +08:00
parent f23e477f57
commit 6aaddfbe9e

View File

@@ -1,7 +1,10 @@
from django.urls import path
from django.views.generic import RedirectView
from . import judge_views
urlpatterns = [
# 默认跳转到登录页
path('', RedirectView.as_view(url='login/', permanent=False), name='judge_index'),
path('login/', judge_views.login_view, name='judge_login'),
path('logout/', judge_views.logout_view, name='judge_logout'),
path('send_code/', judge_views.send_code, name='judge_send_code'),