Ignore:
Timestamp:
7 Dec 2023, 09:56:52 (11 months ago)
Author:
Henrik Bettermann
Message:

Change passmark.

File:
1 edited

Legend:

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

    r16900 r17653  
    371371        ticket.credits = course.credits
    372372        ticket.course_category = course_category
    373         if self.student.entry_session < 2013:
     373        if self.student.entry_session < 2013 or self.student.entry_session > 2021:
    374374            ticket.passmark = course.passmark - 5
    375375        else:
     
    443443        if self.total_score >= 45:
    444444            return ('D',2)
    445         if self.total_score >= self.passmark: # passmark changed in 2013 from 40 to 45
     445        if self.total_score >= self.passmark: # passmark changed in 2013 from 40 to 45 and 2022 back to 40
    446446            return ('E',1)
    447447        return ('F',0)
Note: See TracChangeset for help on using the changeset viewer.