site_tps/content/urls.py
2018-01-30 19:54:01 +01:00

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