Skip to content

Commit

Permalink
AC-7 module feature requests (#1634)
Browse files Browse the repository at this point in the history
* Changed Template Files: Co authored by Abhyuday Singh and Arghadeep Bosu

* Configured Backend: Added new feature in Examination module and modified the Student_grades table in online_cms module

* added migration file for the attributes changed in online_cms module

* added dean actor and gave verification powers only to dean and not to acad admin

* Examination Module completed: Dean academic added, resubmission power can be given to faculty by dean and acadadmin can only read and verify the data, revoked him of write access

---------

Co-authored-by: Arghadeep Bosu <[email protected]>
  • Loading branch information
Lone24wolf and arghaDEVIL authored Oct 22, 2024
1 parent 4b11e9e commit a6438bc
Show file tree
Hide file tree
Showing 18 changed files with 1,244 additions and 164 deletions.
8 changes: 7 additions & 1 deletion FusionIIIT/applications/examination/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
name='generate_transcript_form'),#new
# Announcement
url(r'announcement/', views.announcement, name='announcement'),#new

path('upload_grades/',views.upload_grades,name='upload_grades'),
path('message/',views.show_message,name='message'),
path('submitGradesProf/',views.submitGradesProf,name='submitGradesProf'),
path('download_template/',views.download_template,name='download_template'),
path('verifyGradesDean/',views.verifyGradesDean,name='verifyGradesDean'),
path('updateEntergradesDean/',views.updateEntergradesDean,name='updateEnterGradesDean'),
path('upload_grades_prof/',views.upload_grades_prof,name='upload_grades_prof'),

]
Loading

0 comments on commit a6438bc

Please sign in to comment.