8 lines
141 B
Python
8 lines
141 B
Python
|
from django.urls import path
|
||
|
|
||
|
from .views import ProfileView
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("profile/", ProfileView.as_view(), name="profile"),
|
||
|
]
|