We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ebaa042 + d50092b commit 3fdaad1Copy full SHA for 3fdaad1
1 file changed
project_rates/urls.py
@@ -1,8 +1,9 @@
1
from django.urls import path
2
3
-from project_rates.views import RateProject, RateProjects
+from project_rates.views import RateProject, RateProjects, RateProjectsDetails
4
5
urlpatterns = [
6
path("rate/", RateProject.as_view()),
7
path("<int:program_id>", RateProjects.as_view()),
8
+ path("details/<int:project_id>", RateProjectsDetails.as_view()),
9
]
0 commit comments