Changeset 14977 for main/waeup.aaue/trunk
- Timestamp:
- 22 Mar 2018, 07:39:43 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r14975 r14977 78 78 # FRNS / Fail 79 79 return 0, gpa_boundaries[0][1] 80 if student.entry_session < 2013 and\81 notstudent.current_mode.startswith('dp'):80 if student.entry_session < 2013 or \ 81 student.current_mode.startswith('dp'): 82 82 if gpa < gpa_boundaries[1][0]: 83 83 # Pass … … 85 85 else: 86 86 if gpa < gpa_boundaries[1][0]: 87 # FRNS (Pass degree has been phased out in 2013) 87 # FRNS 88 # Pass degree has been phased out in 2013 for non-diploma 89 # students 88 90 return 0, gpa_boundaries[0][1] 89 91 if gpa < gpa_boundaries[2][0]:
Note: See TracChangeset for help on using the changeset viewer.