- Timestamp:
- 1 Sep 2016, 06:20:17 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py
r14136 r14142 143 143 return 'Fail' 144 144 if self.cumulative_params[0] < 2.4: 145 return ' Third Class (Honours)'145 return '3rd' 146 146 if self.cumulative_params[0] < 3.5: 147 return ' Second Class (Honours) Lower Division'147 return '2ndL' 148 148 if self.cumulative_params[0] < 4.5: 149 return ' Second Class (Honours) Upper Division'149 return '2ndU' 150 150 if self.cumulative_params[0] < 5.1: 151 return ' First Class Honours'151 return '1st' 152 152 return 'N/A' 153 153
Note: See TracChangeset for help on using the changeset viewer.