7 lines
142 B
Python
7 lines
142 B
Python
|
from django.urls import path
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("<str:uuid>", views.ProfilePage.as_view(), name="profile_page"),
|
||
|
]
|