from django.urls import path from blog.views import CategoryList, CategoryDetail, PostDetail, PostList, CommentCreate urlpatterns = [ path('categories/', CategoryList.as_view(), name='categories.list'), path('categories//', CategoryDetail.as_view(), name='categories.details'), path('post/', PostList.as_view(), name='post.list'), path('post//', PostDetail.as_view(), name='post.details'), path('comment/create/', CommentCreate.as_view(), name='comment.create'), ]