13 lines
281 B
Python
13 lines
281 B
Python
|
from django.urls import path
|
||
|
|
||
|
from .views import CreatorListView, CreatorDetailsView
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("", CreatorListView.as_view(), name="creator_list"),
|
||
|
path(
|
||
|
"<str:creator_id>",
|
||
|
CreatorDetailsView.as_view(),
|
||
|
name="creator_details",
|
||
|
),
|
||
|
]
|