Ignore:
Timestamp:
11 Feb 2016, 10:45:59 (9 years ago)
Author:
Henrik Bettermann
Message:

Parttime and fulltime postgrad students pay different acceptance fees.

File:
1 edited

Legend:

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

    r13525 r13678  
    4949        )
    5050
    51     clearance_fee_pt = schema.Float(
    52         title = _(u'PT Acceptance Fee'),
     51    clearance_fee_pg = schema.Float(
     52        title = _(u'FT PG Acceptance Fee'),
     53        default = 0.0,
     54        required = True,
     55        )
     56
     57    clearance_fee_ug_pt = schema.Float(
     58        title = _(u'PT UG Acceptance Fee'),
     59        default = 0.0,
     60        required = True,
     61        )
     62
     63    clearance_fee_pg_pt = schema.Float(
     64        title = _(u'PT PG Acceptance Fee'),
    5365        default = 0.0,
    5466        required = True,
     
    5769    clearance_fee_med = schema.Float(
    5870        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'),
    6571        default = 0.0,
    6672        required = True,
Note: See TracChangeset for help on using the changeset viewer.