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.

15 lines
624 B

from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('<int:course_id>', views.details, name='details'),
path('register_form', views.register_form, name='register_form'),
path('register', views.register, name='register'),
path('login_form', views.login_form, name='login_form'),
path('login', views.login, name='login'),
path('courses', views.courses, name='courses'),
path('change_profile', views.change_profile, name='change_profile'),
path('profile', views.profile, name='profile'),
path('logout', views.logout, name='logout'),
]