Initializing Database

This commit is contained in:
Lucas
2024-06-22 23:12:18 -07:00
parent 961d789099
commit b6ecd4fcb6
81 changed files with 197 additions and 143 deletions

View File

@@ -4,4 +4,5 @@ from . import views
urlpatterns = [
path("all_students/", views.StudentListCreate.as_view(), name="student-view-createlist"),
path("<int:w_number>/", views.StudentRetrieveUpdateDestroy.as_view(), name="update"),
path("<int:w_number>/recommended_classes", views.RecommendedClassesView.as_view(), name="recommended"),
]