8 lines
211 B
Python
8 lines
211 B
Python
from django.urls import path
|
|
|
|
from .views import ProfileView, LogoutView
|
|
|
|
urlpatterns = [
|
|
path("logout/", LogoutView.as_view(), name="logout"),
|
|
path("profile/", ProfileView.as_view(), name="profile"),
|
|
]
|