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