site_tps/content/urls.py
2018-01-30 22:47:47 +01:00

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'
),
]