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