2025-02-12 13:23:35 +01:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from .views import CreatorListView, CreatorDetailsView
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path("", CreatorListView.as_view(), name="creator_list"),
|
|
|
|
path(
|
2025-02-14 11:08:36 +01:00
|
|
|
"<str:creator_id>/",
|
2025-02-12 13:23:35 +01:00
|
|
|
CreatorDetailsView.as_view(),
|
|
|
|
name="creator_details",
|
|
|
|
),
|
|
|
|
]
|