Skip to content

Commit d50092b

Browse files
committed
get details added 2
1 parent 8fcc5ac commit d50092b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

project_rates/urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from django.urls import path
22

3-
from project_rates.views import RateProject, RateProjects
4-
3+
from project_rates.views import RateProject, RateProjects, RateProjectsDetails
54

65
urlpatterns = [
76
path("rate/", RateProject.as_view()),
87
path("<int:program_id>", RateProjects.as_view()),
8+
path("details/<int:project_id>", RateProjectsDetails.as_view()),
99
]

0 commit comments

Comments
 (0)