site_tps/content/urls.py

21 lines
366 B
Python
Raw Normal View History

2018-01-24 11:33:05 +01:00
from django.urls import path
from .views import (
ContentCategoryList,
CreateCategory,
)
2018-01-24 11:33:05 +01:00
2018-01-24 11:44:54 +01:00
app_name = 'content'
2018-01-24 11:33:05 +01: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 11:33:05 +01:00
]