From ef3b6ddaac50cdfee4f11c9b43c3763876019938 Mon Sep 17 00:00:00 2001 From: Gokuldevx Date: Fri, 22 Aug 2025 06:57:52 +0530 Subject: [PATCH] comments routing --- civicfix/core/urls.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/civicfix/core/urls.py b/civicfix/core/urls.py index 97c004b..00abffb 100644 --- a/civicfix/core/urls.py +++ b/civicfix/core/urls.py @@ -10,5 +10,8 @@ urlpatterns = [ path('dashboard/', views.citizen_dashboard, name='citizen_dashboard'), path('report-issue/', views.report_issue, name='report_issue'), path('issues/', views.view_all_issues, name='view_all_issues'), - path('vote//', views.vote_issue, name='vote_issue'), + path("issues//", views.issue_detail, name="issue_detail"), + path("issues//comment/", views.add_comment, name="add_comment"), + path("issues//comment//", views.add_comment, name="add_comment"), + path('vote//', views.vote_issue, name='vote_issue'), ] \ No newline at end of file