20 lines
366 B
Python
20 lines
366 B
Python
from django.urls import path
|
|
|
|
from .views import (
|
|
ContentCategoryList,
|
|
CreateCategory,
|
|
)
|
|
|
|
app_name = 'content'
|
|
urlpatterns = [
|
|
path(
|
|
'category/<int:category_id>/',
|
|
ContentCategoryList.as_view(),
|
|
name='category-list'
|
|
),
|
|
path(
|
|
'category/new/',
|
|
CreateCategory.as_view(),
|
|
name='category-new'
|
|
),
|
|
]
|