Compare commits

..

3 Commits

Author SHA1 Message Date
Jaya Surya P 4c248be3a5
Merge pull request #204 from CDC-IITDH/nitin
fixed stats
2024-09-26 17:00:02 +05:30
Jaya Surya P 7eee78177c
Merge branch 'main' into nitin 2024-09-26 16:59:55 +05:30
NitinVangipuram ce97fc8342 fixed stats 2024-09-26 12:18:55 +05:30
1 changed files with 19 additions and 3 deletions

View File

@ -623,6 +623,17 @@ def getStats(request, id, email, user_type):
"psu":0,
},
"EP":{
"1":0,
"2":0,
"3":0,
"4":0,
"5":0,
"6":0,
"7":0,
"8":0,
"psu":0,
},
"Total": {
"1":0,
"2":0,
@ -639,6 +650,7 @@ def getStats(request, id, email, user_type):
"CSE": 0,
"EE": 0,
"MMAE": 0,
"EP": 0,
"Total": 0,
}
number_of_students_with_multiple_offers = 0
@ -646,22 +658,26 @@ def getStats(request, id, email, user_type):
"CSE": 0,
"EE": 0,
"MMAE": 0,
"EP": 0,
"Total": 0,
}
max_CTC = {
"CSE": 0,
"EE": 0,
"MMAE": 0
"MMAE": 0,
"EP": 0,
}
average_CTC = {
"CSE": 0,
"EE": 0,
"MMAE": 0
"MMAE": 0,
"EP": 0,
}
count = {
"CSE": 0,
"EE": 0,
"MMAE": 0
"MMAE": 0,
"EP": 0,
}