Ignore:
Timestamp:
2 Dec 2015, 17:22:59 (9 years ago)
Author:
Henrik Bettermann
Message:

Add clearance_fee_pg field.

Add pgft and pfpt application types.

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

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/applicants/utils.py

    r10929 r13525  
    3131        'ptee': ['Part-Time Entrance Examination', 'PTEE'],
    3232        'app': ['General Studies', 'APP'],
     33        'pgft': ['Postgraduate Full-Time Programmes', 'PG'],
     34        'pgpt': ['Postgraduate Part-Time Programmes', 'PG'],
    3335        }
    3436
  • main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py

    r13463 r13525  
    5757    clearance_fee_med = schema.Float(
    5858        title = _(u'Medical Acceptance Fee'),
     59        default = 0.0,
     60        required = True,
     61        )
     62
     63    clearance_fee_pg = schema.Float(
     64        title = _(u'Postgraduate Acceptance Fee'),
    5965        default = 0.0,
    6066        required = True,
Note: See TracChangeset for help on using the changeset viewer.