12 lines
212 B
Python
12 lines
212 B
Python
|
from django.urls import path
|
||
|
|
||
|
from .views import ContentCategoryList
|
||
|
|
||
|
urlpatterns = [
|
||
|
path(
|
||
|
'category/<int:category_id>/',
|
||
|
ContentCategoryList.as_view(),
|
||
|
name='category-list'
|
||
|
),
|
||
|
]
|