Skip to content

Commit

Permalink
Merge pull request #12 from Django-Projects-Ls/fix/urls
Browse files Browse the repository at this point in the history
(feat): now create page can be acessed
  • Loading branch information
LopesLs authored Jan 1, 2024
2 parents 07b0d5e + 66dfad6 commit dd04173
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scheduleManagement/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
name="create_course",
),
path(
"list-courses/<slug:slug>",
"list-courses/detail/<slug:slug>",
views.CourseDetailsRequestHandler.as_view(),
name="detail_course",
),
Expand All @@ -38,7 +38,7 @@
name="create_discipline",
),
path(
"list-disciplines/<slug:slug>",
"list-disciplines/detail/<slug:slug>",
views.DisciplineDetailsRequestHandler.as_view(),
name="detail_discipline",
),
Expand All @@ -63,7 +63,7 @@
name="create_schedule",
),
path(
"list-schedules/<slug:slug>",
"list-schedules/detail/<slug:slug>",
views.ScheduleDetailsRequestHandler.as_view(),
name="detail_schedule",
),
Expand Down

0 comments on commit dd04173

Please sign in to comment.