Polished study_groups list view to only show study_groups which are the same course as the user requesting

This commit is contained in:
Keannu Christian Bernasol 2023-06-27 22:57:37 +08:00
parent 8c337295e2
commit 11d6887af8
3 changed files with 35 additions and 1 deletions

View file

@ -7,5 +7,6 @@ urlpatterns = [
path('courses/', include('courses.urls')),
path('year_levels/', include('year_levels.urls')),
path('semesters/', include('semesters.urls')),
path('subjects/', include('subjects.urls'))
path('subjects/', include('subjects.urls')),
path('study_groups/', include('study_groups.urls'))
]