Files
shopback/blog/urls.py
Beyhan Oğur d9f1ea341e first commit
2026-04-26 22:27:56 +03:00

12 lines
509 B
Python

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/<slug:slug>/', CategoryDetail.as_view(), name='categories.details'),
path('post/', PostList.as_view(), name='post.list'),
path('post/<slug:slug>/', PostDetail.as_view(), name='post.details'),
path('comment/create/', CommentCreate.as_view(), name='comment.create'),
]