Changeset 14463 for main


Ignore:
Timestamp:
26 Jan 2017, 08:55:04 (8 years ago)
Author:
Henrik Bettermann
Message:

Return 'Pass' instead of '3s_rd_s' if entry session is below 2013 and cgpa is below 1.5.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py

    r14444 r14463  
    195195            if self.cumulative_params[0] < failed_limit:
    196196                return 'Fail'
     197            if self.cumulative_params[0] < 1.5:
     198                return 'Pass'
    197199            if self.cumulative_params[0] < 2.4:
    198200                return '3s_rd_s'
Note: See TracChangeset for help on using the changeset viewer.