site_tps/content/urls.py

21 lines
366 B
Python
Raw Normal View History

2018-01-24 10:33:05 +00:00
from django.urls import path
from .views import (
ContentCategoryList,
CreateCategory,
)
2018-01-24 10:33:05 +00:00
2018-01-24 10:44:54 +00:00
app_name = 'content'
2018-01-24 10:33:05 +00:00
urlpatterns = [
path(
'category/<int:category_id>/',
ContentCategoryList.as_view(),
name='category-list'
),
path(
'category/new/',
CreateCategory.as_view(),
name='category-new'
),
2018-01-24 10:33:05 +00:00
]