Changeset 13127 for main/waeup.aaue/trunk/src/waeup
- Timestamp:
- 1 Jul 2015, 18:38:09 (9 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r13035 r13127 30 30 31 31 """ 32 33 VERDICTS_DICT = {34 '0': 'not yet',35 'A': 'Successful student',36 'B': 'Student with carryover courses',37 'C': 'Student on probation',38 #'D': 'Withdrawn from the faculty',39 #'E': 'Student who were previously on probation',40 #'F': 'Medical case',41 #'G': 'Absent from examination',42 #'H': 'Withheld results',43 #'I': 'Expelled/rusticated/suspended student',44 #'J': 'Temporary withdrawn from the university',45 #'K': 'Unregistered student',46 #'L': 'Referred student',47 #'M': 'Reinstatement',48 #'N': 'Student on transfer',49 #'O': 'NCE-III repeater',50 #'Y': 'No previous verdict',51 #'X': 'New 300 level student',52 'Z': 'Successful student (provisional)',53 #'A1': 'First Class',54 #'A2': 'Second Class Upper',55 #'A3': 'Second Class Lower',56 #'A4': 'Third Class',57 #'A5': 'Pass',58 #'A6': 'Distinction',59 #'A7': 'Credit',60 #'A8': 'Merit',61 'NEOR': 'No evidence of registration',62 'NEOV': 'No evidence of verification',63 'FRNS': 'Faculty requirements not satisfied',64 }65 32 66 33 gpa_boundaries = ((1, 'FRNS'), -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r13035 r13127 77 77 } 78 78 79 VERDICTS_DICT = { 80 '0': 'not yet', 81 'A': 'Successful student', 82 'B': 'Student with carryover courses', 83 'C': 'Student on probation', 84 #'D': 'Withdrawn from the faculty', 85 #'E': 'Student who were previously on probation', 86 #'F': 'Medical case', 87 #'G': 'Absent from examination', 88 #'H': 'Withheld results', 89 #'I': 'Expelled/rusticated/suspended student', 90 #'J': 'Temporary withdrawn from the university', 91 #'K': 'Unregistered student', 92 #'L': 'Referred student', 93 #'M': 'Reinstatement', 94 #'N': 'Student on transfer', 95 #'O': 'NCE-III repeater', 96 #'Y': 'No previous verdict', 97 #'X': 'New 300 level student', 98 'Z': 'Successful student (provisional)', 99 #'A1': 'First Class', 100 #'A2': 'Second Class Upper', 101 #'A3': 'Second Class Lower', 102 #'A4': 'Third Class', 103 #'A5': 'Pass', 104 #'A6': 'Distinction', 105 #'A7': 'Credit', 106 #'A8': 'Merit', 107 'NEOR': 'No evidence of registration', 108 'NEOV': 'No evidence of verification', 109 'FRNS': 'Faculty requirements not satisfied', 110 }
Note: See TracChangeset for help on using the changeset viewer.