kers/users/urls.py

11 lines
179 B
Python
Raw Normal View History

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