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