Changeset 17207


Ignore:
Timestamp:
7 Dec 2022, 16:29:23 (22 months ago)
Author:
Henrik Bettermann
Message:

Reduce EXAM_GRADES dict.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/utils/utils.py

    r17096 r17207  
    2323    """A collection of methods subject to customization.
    2424    """
     25    EXAM_GRADES = (
     26        ('A1', 'Excellent (A1)'),
     27        ('A2', 'Very Good (A2)'),
     28        ('A3', 'Good (A3)'),
     29        ('B2', 'Very Good (B2)'),
     30        ('B3', 'Good (B3)'),
     31        ('C4', 'Credit (C4)'),
     32        ('C5', 'Credit (C5)'),
     33        ('C6', 'Credit (C6)'),
     34        ('A', 'Pass (A)'),
     35        ('B', 'Pass (B)'),
     36        ('C', 'Pass (C)'),
     37        #('U', 'Pass (U)'),
     38        #('D7', 'Pass (D7)'),
     39        #('P7', 'Pass (P7)'),
     40        #('P8', 'Pass (P8)'),
     41        #('E8', 'Pass (E8)'),
     42        #('F9', 'Fail (F9)'),
     43        ('Aa', 'A (a)'),
     44        ('Bb', 'B (b)'),
     45        ('Cc', 'C (c)'),
     46        #('Dd', 'D (d)'),
     47        #('Ee', 'E (e)'),
     48        #('Ff', 'F (f)'),
     49        #('Gg', 'G (g)'),
     50        ('credit-1', 'Credit-1'),
     51        ('credit-2', 'Credit-2'),
     52        ('dist', 'Distinction'),
     53        #('pass', 'Pass'),
     54        #('AR', 'Awaiting Results'),
     55        )
    2556
    2657    PAYMENT_CATEGORIES = {
Note: See TracChangeset for help on using the changeset viewer.