from django.urls import path from . import views app_name = "comment" urlpatterns = [ path("post-comment//", views.post_comment, name="post_comment"), path("post-comment//", views.post_comment, name="reply_comment"), ]