Changeset 4565


Ignore:
Timestamp:
21 Dec 2009, 15:53:09 (15 years ago)
Author:
Henrik Bettermann
Message:

ticket schools #12

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_student/getGradesFromScore.py

    r3707 r4565  
    1010# $Id$
    1111
    12 if level_id:
     12if level_id:   #for ois only
    1313    if level_id in ('100', '200', '300'):
    1414        if score >= 80:
     
    1616        if score >= 60:
    1717            return ('C')
    18         if score >= 55:
     18        if score >= 55: 
    1919            return ('P')
    2020        if score >= 0:
     
    3535        if score >= 0:
    3636            return ('F9')
     37    elif level_id == '700':
     38        if score >= 80:
     39            return ('A')
     40        if score >= 65:
     41            return ('B')
     42        if score >= 55:
     43            return ('C')
     44        if score >= 45:
     45            return ('D')     
     46        if score >= 0:
     47            return ('F')                 
    3748    else:
    3849        return('X')
Note: See TracChangeset for help on using the changeset viewer.