from django.urls import path from . import views app_name = 'comment' urlpatterns = [ path('submit_comment/',views.submit_comment, name='submit_comment'), path('get_comments/', views.get_comments, name='get_comments'), ]