This commit is contained in:
2024-05-10 09:38:31 +03:00
parent 9a5f895b93
commit 49cc44027d
81 changed files with 6093 additions and 28 deletions

8
system/comments/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.urls import path
from system.comments import views
urlpatterns = [
#path('articles/<str:slug>/comments', views.CommentView.as_view(), name='comment-article'),
#path('articles/<str:slug>/comments/<int:id>', views.DeleteCommentView.as_view(), name='comment-delete'),
]