kers/users/urls.py
2020-07-22 15:10:49 +02:00

11 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")
]