You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
498 B

4 years ago
from django.contrib import admin
from django.urls import path
from django.conf.urls import url
from student import views
urlpatterns = [
path('admin/', admin.site.urls),
url(r'^studentLogin/',views.studentLogin),
url(r'^teacherLogin/',views.teacherLogin),
url(r'^$',views.index),
url(r'^toIndex/$',views.toIndex),
url('queryStudent',views.queryStudent),
url(r'^startExam/$',views.startExam),
url(r'^calGrade/$',views.calGrade),
url(r'^logout/$',views.logOut),
]