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.
14 lines
577 B
14 lines
577 B
from django.conf.urls import url
|
|
|
|
from progress import views
|
|
|
|
urlpatterns = [
|
|
url(r'students/(?P<teacher_token>[0-9A-Fa-f-]+)/$', views.StudentWorkView.as_view()),
|
|
url(r'student/$', views.StudentUpdateProgress.as_view()),
|
|
url(r'find/$', views.FindProgressView.as_view()),
|
|
url(r'freeze/$', views.FreezeProgressView.as_view()),
|
|
url(r'change_teacher/$', views.ChangeTeacherView.as_view()),
|
|
url(r'teacher/$', views.TeacherUpdateProgress.as_view()),
|
|
url(r'set-progress/$', views.SetProgress.as_view()),
|
|
url(r'get_hw_pay/$', views.get_teachers_pay),
|
|
] |