# webapp/auth/urls.py from django.urls import path from . import views urlpatterns = [ path('', views.register, name='register'), path('login/', views.login, name='login'), path('logout/', views.logout, name='logout'), path('profile/view//', views.another_profile, name='another_profile'), path('complete-profile/', views.complete_profile, name='complete_profile'), path('profile/', views.profile, name='profile'), path('profile/update', views.profile_update, name='profile_update'), path('profile/account/update', views.account_update, name='account_update'), path('profile/account/mycourses', views.my_courses, name='user_courses'), path('profile/page/post', views.create_post, name='profile_create_post'), path('profile/', views.profile, name='profile_page'), path('profile///', views.profile, name='profile_id_page'), ]