kers/users/urls.py
2020-07-22 05:34:40 +02:00

8 lines
143 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('profile', views.profile),
path('logout', views.logout_view)
]