kers/users/urls.py

11 lines
179 B
Python
Raw Normal View History

2020-07-22 02:21:29 +00:00
from django.urls import path
from . import views
2020-07-22 03:44:49 +00:00
app_name = "users"
2020-07-22 02:21:29 +00:00
urlpatterns = [
2020-07-22 03:44:49 +00:00
path('profile', views.profile, name="profile"),
2020-07-22 03:03:01 +00:00
path('logout', views.logout_view)
2020-07-22 02:21:29 +00:00
]