10 lines
277 B
Python
10 lines
277 B
Python
from django.conf.urls import url
|
|
from django.urls import path
|
|
from django.conf.urls.static import static
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
path('profile', views.ProfileView.as_view(), name = 'profile_view'),
|
|
path('logout', views.logout_view, name ='logout_user'),
|
|
] |