Changeset 17898


Ignore:
Timestamp:
20 Aug 2024, 10:36:41 (4 weeks ago)
Author:
Henrik Bettermann
Message:

Extend degrees dict.

Location:
main/waeup.kofa/trunk/src/waeup/kofa
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_browser.py

    r17877 r17898  
    719719        self.browser.getControl(
    720720            name='upload_finalclearanceuploadmanage').click()
    721         print self.browser.contents
    722721        self.assertTrue(
    723722            'href="http://localhost/app/students/K1000000/routingslip.pdf"'
  • main/waeup.kofa/trunk/src/waeup/kofa/utils/degrees.py

    r13622 r17898  
    11DEGREES_DICT = {
    2     'BA': 'Bachelor of Arts',
     2    'PRE': 'Pre Degree',
     3    'BA':   'Bachelor of Arts',
    34    'BAGR': 'Bachelor of Agriculture',
    4     'LLB': 'Bachelor of Laws',
    5     'MA': 'Master of Arts',
    6     'MBA': 'Master of Business Administration',
     5    'BSC':  'Bachelor of Science',
     6    'BED':  'Bachelor of Education',
     7    'LLB':  'Bachelor of Laws',
     8    'MA':   'Master of Arts',
     9    'MBA':  'Master of Business Administration',
    710    'MUSM': 'Master of Music',
    8     'LLM': 'Master of Laws',
    9     'DBA': 'Doctor of Business Administration',
    10     'PHD': 'Doctor of Philosophy',
    11     'MD': 'Doctor of Medicine',
     11    'LLM':  'Master of Laws',
     12    'MSC':  'Master of Science',
     13    'MED':  'Master of Education',
     14    'DBA':  'Doctor of Business Administration',
     15    'PHD':  'Doctor of Philosophy',
     16    'MD':   'Doctor of Medicine',
     17    'PGD':  'Post Graduate Diploma',
    1218    }
Note: See TracChangeset for help on using the changeset viewer.