-
Notifications
You must be signed in to change notification settings - Fork 978
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1319 from Divyanshusir/courseRegistration
AC2 - Course registration
- Loading branch information
Showing
26 changed files
with
1,678 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,39 @@ | ||
from django.conf.urls import url | ||
|
||
from . import views | ||
|
||
|
||
urlpatterns = [ | ||
url(r'^stu/details', views.academic_procedures_student, name='student_procedures'), | ||
url(r'^stu/pre_registration' , views.student_pre_registration , name = 'pre_registration'), | ||
url(r'^stu/final_registration' , views.student_final_registration , name = 'final_registration'), | ||
url(r'^stu/view_registration' , views.student_view_registration , name = 'view_registration'), | ||
url(r'^stu/view_offered_courses' , views.view_offered_courses , name = 'student_view_offered_courses'), | ||
url(r'^stu/backlog_courses', views.student_backlog_courses , name = 'student_backlog_courses'), | ||
url(r'^stu/add_course' , views.add_course , name ='add_course') , | ||
url(r'^stu/drop_course' , views.drop_course , name = 'drop_course'), | ||
# url(r'^stu/replaceCourse' , views.replaceCourse , name = 'replaceCourse') | ||
|
||
|
||
|
||
url(r'^acad/view_registrations' , views.acad_view_reigstrations , name='acad_view_registrations'), | ||
url(r'^acad/get_course_list' , views.get_course_list , name = 'get_course_list' ), | ||
url(r'^acad/configure_pre_registration' , views.configure_pre_registration_date , name = 'configure_pre_registration'), | ||
url(r'^acad/configure_final_registration' , views.configure_final_registration_date , name = 'configure_final_registration'), | ||
|
||
|
||
|
||
url(r'^fac/view_assigned_courses' , views.faculty_assigned_courses , name = 'faculty_assigned_courses'), | ||
# url(r'^fac/get_roll_list' , views.fetch_roll_list , name = 'fetch_roll_list'), | ||
|
||
|
||
|
||
url(r'^get_user_info' , views.get_user_info , name = 'get_user_info'), | ||
|
||
# these urls were designed previously and are not working any more | ||
|
||
url(r'^fac/', views.academic_procedures_faculty, name='faculty_procedures'), | ||
url(r'^stu/', views.academic_procedures_student, name='student_procedures'), | ||
url(r'^addThesis/', views.add_thesis, name='add_thesis'), | ||
url(r'^approve_thesis/(?P<id>[0-9]+)/', views.approve_thesis, name='approve_thesis'), | ||
# url(r'^fac/', views.academic_procedures_faculty, name='faculty_procedures'), | ||
# url(r'^stu', views.academic_procedures_student, name='student_procedures'), | ||
# url(r'^addThesis/', views.add_thesis, name='add_thesis'), | ||
# url(r'^approve_thesis/(?P<id>[0-9]+)/', views.approve_thesis, name='approve_thesis') | ||
|
||
] | ||
] |
Oops, something went wrong.