10 lines
194 B
Python
10 lines
194 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "users"
|
|
|
|
urlpatterns = [
|
|
path('profile', views.profile, name="profile"),
|
|
path('logout', views.logout_view, name="logout")
|
|
]
|