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.
12 lines
471 B
12 lines
471 B
from django.conf.urls import url
|
|
from access import views as views
|
|
|
|
urlpatterns = [
|
|
url(r'teachers/$', views.TeacherListView.as_view()),
|
|
url(r'info/$', views.InfoUserView.as_view()),
|
|
url(r'check/$', views.CheckUserView.as_view()),
|
|
url(r'registration/$', views.RegistrationView.as_view()),
|
|
url(r'change_password/$', views.ChangePasswordView.as_view()),
|
|
url(r'login/$', views.LoginView.as_view()),
|
|
url(r'logout/$', views.LogoutView.as_view()),
|
|
] |